hours property

  1. @TagNumber(4)
int hours

Required. Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

Implementation

@$pb.TagNumber(4)
$core.int get hours => $_getIZ(3);
  1. @TagNumber(4)
void hours=(int v)

Implementation

@$pb.TagNumber(4)
set hours($core.int v) { $_setSignedInt32(3, v); }