...

Package interval

import "google.golang.org/genproto/googleapis/type/interval"
Overview
Index

Overview ▾

Variables

var File_google_type_interval_proto protoreflect.FileDescriptor

type Interval

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

func (*Interval) Descriptor() ([]byte, []int)

Deprecated: Use Interval.ProtoReflect.Descriptor instead.

func (*Interval) GetEndTime

func (x *Interval) GetEndTime() *timestamppb.Timestamp

func (*Interval) GetStartTime

func (x *Interval) GetStartTime() *timestamppb.Timestamp

func (*Interval) ProtoMessage

func (*Interval) ProtoMessage()

func (*Interval) ProtoReflect

func (x *Interval) ProtoReflect() protoreflect.Message

func (*Interval) Reset

func (x *Interval) Reset()

func (*Interval) String

func (x *Interval) String() string