| 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. |
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
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
func (o *MeetingEnd) GetDatetime() string
GetDatetime returns the Datetime field if non-nil, zero value otherwise.
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.
func (o *MeetingEnd) SetDatetime(v string)
SetDatetime sets Datetime field to given value.
func (o *MeetingEnd) GetTimezone() string
GetTimezone returns the Timezone field if non-nil, zero value otherwise.
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.
func (o *MeetingEnd) SetTimezone(v string)
SetTimezone sets Timezone field to given value.
func (o *MeetingEnd) GetDate() string
GetDate returns the Date field if non-nil, zero value otherwise.
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.
func (o *MeetingEnd) SetDate(v string)
SetDate sets Date field to given value.