var File_google_type_interval_proto protoreflect.FileDescriptor
Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive).
The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time.
type Interval struct { // Optional. Inclusive start of the interval. // // If specified, a Timestamp matching this interval will have to be the same // or after the start. StartTime *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // Optional. Exclusive end of the interval. // // If specified, a Timestamp matching this interval will have to be before the // end. EndTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // contains filtered or unexported fields }
func (*Interval) Descriptor() ([]byte, []int)
Deprecated: Use Interval.ProtoReflect.Descriptor instead.
func (x *Interval) GetEndTime() *timestamppb.Timestamp
func (x *Interval) GetStartTime() *timestamppb.Timestamp
func (*Interval) ProtoMessage()
func (x *Interval) ProtoReflect() protoreflect.Message
func (x *Interval) Reset()
func (x *Interval) String() string