Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.7 KB

TimeZone.md

File metadata and controls

108 lines (59 loc) · 2.7 KB

TimeZone

Properties

Name Type Description Notes
ZoneId Pointer to string [optional]
Region Pointer to string [optional]
DisplayName Pointer to string [optional]

Methods

NewTimeZone

func NewTimeZone() *TimeZone

NewTimeZone instantiates a new TimeZone 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

NewTimeZoneWithDefaults

func NewTimeZoneWithDefaults() *TimeZone

NewTimeZoneWithDefaults instantiates a new TimeZone 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

GetZoneId

func (o *TimeZone) GetZoneId() string

GetZoneId returns the ZoneId field if non-nil, zero value otherwise.

GetZoneIdOk

func (o *TimeZone) GetZoneIdOk() (*string, bool)

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

SetZoneId

func (o *TimeZone) SetZoneId(v string)

SetZoneId sets ZoneId field to given value.

HasZoneId

func (o *TimeZone) HasZoneId() bool

HasZoneId returns a boolean if a field has been set.

GetRegion

func (o *TimeZone) GetRegion() string

GetRegion returns the Region field if non-nil, zero value otherwise.

GetRegionOk

func (o *TimeZone) GetRegionOk() (*string, bool)

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

SetRegion

func (o *TimeZone) SetRegion(v string)

SetRegion sets Region field to given value.

HasRegion

func (o *TimeZone) HasRegion() bool

HasRegion returns a boolean if a field has been set.

GetDisplayName

func (o *TimeZone) GetDisplayName() string

GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.

GetDisplayNameOk

func (o *TimeZone) GetDisplayNameOk() (*string, bool)

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

SetDisplayName

func (o *TimeZone) SetDisplayName(v string)

SetDisplayName sets DisplayName field to given value.

HasDisplayName

func (o *TimeZone) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

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