Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.12 KB

TimeFrame.md

File metadata and controls

82 lines (45 loc) · 2.12 KB

TimeFrame

Properties

Name Type Description Notes
BeginTime Pointer to string [optional]
EndTime Pointer to string [optional]

Methods

NewTimeFrame

func NewTimeFrame() *TimeFrame

NewTimeFrame instantiates a new TimeFrame 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

NewTimeFrameWithDefaults

func NewTimeFrameWithDefaults() *TimeFrame

NewTimeFrameWithDefaults instantiates a new TimeFrame 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

GetBeginTime

func (o *TimeFrame) GetBeginTime() string

GetBeginTime returns the BeginTime field if non-nil, zero value otherwise.

GetBeginTimeOk

func (o *TimeFrame) GetBeginTimeOk() (*string, bool)

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

SetBeginTime

func (o *TimeFrame) SetBeginTime(v string)

SetBeginTime sets BeginTime field to given value.

HasBeginTime

func (o *TimeFrame) HasBeginTime() bool

HasBeginTime returns a boolean if a field has been set.

GetEndTime

func (o *TimeFrame) GetEndTime() string

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

GetEndTimeOk

func (o *TimeFrame) 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 *TimeFrame) SetEndTime(v string)

SetEndTime sets EndTime field to given value.

HasEndTime

func (o *TimeFrame) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

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