Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.63 KB

DateTimeFormat.md

File metadata and controls

134 lines (73 loc) · 3.63 KB

DateTimeFormat

Properties

Name Type Description Notes
DateFormat Pointer to string [optional]
TimeFormat Pointer to string [optional]
ZoneOffset Pointer to string [optional]
ShowTimeZone Pointer to bool [optional]

Methods

NewDateTimeFormat

func NewDateTimeFormat() *DateTimeFormat

NewDateTimeFormat instantiates a new DateTimeFormat 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

NewDateTimeFormatWithDefaults

func NewDateTimeFormatWithDefaults() *DateTimeFormat

NewDateTimeFormatWithDefaults instantiates a new DateTimeFormat 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

GetDateFormat

func (o *DateTimeFormat) GetDateFormat() string

GetDateFormat returns the DateFormat field if non-nil, zero value otherwise.

GetDateFormatOk

func (o *DateTimeFormat) GetDateFormatOk() (*string, bool)

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

SetDateFormat

func (o *DateTimeFormat) SetDateFormat(v string)

SetDateFormat sets DateFormat field to given value.

HasDateFormat

func (o *DateTimeFormat) HasDateFormat() bool

HasDateFormat returns a boolean if a field has been set.

GetTimeFormat

func (o *DateTimeFormat) GetTimeFormat() string

GetTimeFormat returns the TimeFormat field if non-nil, zero value otherwise.

GetTimeFormatOk

func (o *DateTimeFormat) GetTimeFormatOk() (*string, bool)

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

SetTimeFormat

func (o *DateTimeFormat) SetTimeFormat(v string)

SetTimeFormat sets TimeFormat field to given value.

HasTimeFormat

func (o *DateTimeFormat) HasTimeFormat() bool

HasTimeFormat returns a boolean if a field has been set.

GetZoneOffset

func (o *DateTimeFormat) GetZoneOffset() string

GetZoneOffset returns the ZoneOffset field if non-nil, zero value otherwise.

GetZoneOffsetOk

func (o *DateTimeFormat) GetZoneOffsetOk() (*string, bool)

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

SetZoneOffset

func (o *DateTimeFormat) SetZoneOffset(v string)

SetZoneOffset sets ZoneOffset field to given value.

HasZoneOffset

func (o *DateTimeFormat) HasZoneOffset() bool

HasZoneOffset returns a boolean if a field has been set.

GetShowTimeZone

func (o *DateTimeFormat) GetShowTimeZone() bool

GetShowTimeZone returns the ShowTimeZone field if non-nil, zero value otherwise.

GetShowTimeZoneOk

func (o *DateTimeFormat) GetShowTimeZoneOk() (*bool, bool)

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

SetShowTimeZone

func (o *DateTimeFormat) SetShowTimeZone(v bool)

SetShowTimeZone sets ShowTimeZone field to given value.

HasShowTimeZone

func (o *DateTimeFormat) HasShowTimeZone() bool

HasShowTimeZone returns a boolean if a field has been set.

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