Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 3.04 KB

File metadata and controls

93 lines (50 loc) · 3.04 KB

MeetingEnd

Properties

Name Type Description Notes
Datetime string A datetime representing when the meeting ends. All day meetings will return a date whereas non-all day meetings will return a datetime. Datetimes do not include timezone information; please refer to `timezone` for timezone information. Following iCalendar RFC 5545, the `end_at` property is exclusive, meaning that the meeting ends before the specified time, not at it. For example, a one day meeting on June 3rd would have an `end_at` of June 4th, not June 3rd; a one hour meeting starting at 14:00 would have an `end_at` of 15:00, not 14:00.
Timezone string The IANA timezone in which the meeting ends, if available.
Date string If an all day event, a date representing when the meeting ends.

Methods

NewMeetingEnd

func NewMeetingEnd(datetime string, timezone string, date string, ) *MeetingEnd

NewMeetingEnd instantiates a new MeetingEnd 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

NewMeetingEndWithDefaults

func NewMeetingEndWithDefaults() *MeetingEnd

NewMeetingEndWithDefaults instantiates a new MeetingEnd 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

GetDatetime

func (o *MeetingEnd) GetDatetime() string

GetDatetime returns the Datetime field if non-nil, zero value otherwise.

GetDatetimeOk

func (o *MeetingEnd) GetDatetimeOk() (*string, bool)

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

SetDatetime

func (o *MeetingEnd) SetDatetime(v string)

SetDatetime sets Datetime field to given value.

GetTimezone

func (o *MeetingEnd) GetTimezone() string

GetTimezone returns the Timezone field if non-nil, zero value otherwise.

GetTimezoneOk

func (o *MeetingEnd) 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 *MeetingEnd) SetTimezone(v string)

SetTimezone sets Timezone field to given value.

GetDate

func (o *MeetingEnd) GetDate() string

GetDate returns the Date field if non-nil, zero value otherwise.

GetDateOk

func (o *MeetingEnd) GetDateOk() (*string, bool)

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

SetDate

func (o *MeetingEnd) SetDate(v string)

SetDate sets Date field to given value.

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