Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.92 KB

TimeBoundary.md

File metadata and controls

108 lines (59 loc) · 2.92 KB

TimeBoundary

Properties

Name Type Description Notes
StartTime Pointer to string The start time of format yyyy/MM/dd HH:mm:ss [optional]
EndTime Pointer to string The end time of format yyyy/MM/dd HH:mm:ss [optional]
TimeZone Pointer to string The time zone (see java.util.TimeZone) [optional]

Methods

NewTimeBoundary

func NewTimeBoundary() *TimeBoundary

NewTimeBoundary instantiates a new TimeBoundary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewTimeBoundaryWithDefaults

func NewTimeBoundaryWithDefaults() *TimeBoundary

NewTimeBoundaryWithDefaults instantiates a new TimeBoundary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetStartTime

func (o *TimeBoundary) GetStartTime() string

GetStartTime returns the StartTime field if non-nil, zero value otherwise.

GetStartTimeOk

func (o *TimeBoundary) GetStartTimeOk() (*string, bool)

GetStartTimeOk returns a tuple with the StartTime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetStartTime

func (o *TimeBoundary) SetStartTime(v string)

SetStartTime sets StartTime field to given value.

HasStartTime

func (o *TimeBoundary) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

GetEndTime

func (o *TimeBoundary) GetEndTime() string

GetEndTime returns the EndTime field if non-nil, zero value otherwise.

GetEndTimeOk

func (o *TimeBoundary) GetEndTimeOk() (*string, bool)

GetEndTimeOk returns a tuple with the EndTime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetEndTime

func (o *TimeBoundary) SetEndTime(v string)

SetEndTime sets EndTime field to given value.

HasEndTime

func (o *TimeBoundary) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

GetTimeZone

func (o *TimeBoundary) GetTimeZone() string

GetTimeZone returns the TimeZone field if non-nil, zero value otherwise.

GetTimeZoneOk

func (o *TimeBoundary) GetTimeZoneOk() (*string, bool)

GetTimeZoneOk returns a tuple with the TimeZone field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetTimeZone

func (o *TimeBoundary) SetTimeZone(v string)

SetTimeZone sets TimeZone field to given value.

HasTimeZone

func (o *TimeBoundary) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]