package interval

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

Index

Variables

var File_google_type_interval_proto protoreflect.FileDescriptor

Types

type Interval

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
}

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.

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

Source Files

interval.pb.go

Version
v0.0.0-20250219182151-9fdb1cabc7b2 (latest)
Published
Feb 19, 2025
Platform
linux/amd64
Imports
5 packages
Last checked
59 minutes ago

Tools for package owners.