Skip to content

Latest commit

 

History

History
170 lines (93 loc) · 4.55 KB

Schedule1.md

File metadata and controls

170 lines (93 loc) · 4.55 KB

Schedule1

Properties

Name Type Description Notes
Type ScheduleType
Days Pointer to Schedule1Days [optional]
Hours Schedule1Hours
Expiration Pointer to NullableTime A date-time in ISO-8601 format [optional]
TimeZoneId Pointer to NullableString The GMT formatted timezone the schedule will run in (ex. GMT-06:00). If no timezone is specified, the org's default timezone is used. [optional]

Methods

NewSchedule1

func NewSchedule1(type_ ScheduleType, hours Schedule1Hours, ) *Schedule1

NewSchedule1 instantiates a new Schedule1 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

NewSchedule1WithDefaults

func NewSchedule1WithDefaults() *Schedule1

NewSchedule1WithDefaults instantiates a new Schedule1 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

GetType

func (o *Schedule1) GetType() ScheduleType

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *Schedule1) GetTypeOk() (*ScheduleType, bool)

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

SetType

func (o *Schedule1) SetType(v ScheduleType)

SetType sets Type field to given value.

GetDays

func (o *Schedule1) GetDays() Schedule1Days

GetDays returns the Days field if non-nil, zero value otherwise.

GetDaysOk

func (o *Schedule1) GetDaysOk() (*Schedule1Days, bool)

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

SetDays

func (o *Schedule1) SetDays(v Schedule1Days)

SetDays sets Days field to given value.

HasDays

func (o *Schedule1) HasDays() bool

HasDays returns a boolean if a field has been set.

GetHours

func (o *Schedule1) GetHours() Schedule1Hours

GetHours returns the Hours field if non-nil, zero value otherwise.

GetHoursOk

func (o *Schedule1) GetHoursOk() (*Schedule1Hours, bool)

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

SetHours

func (o *Schedule1) SetHours(v Schedule1Hours)

SetHours sets Hours field to given value.

GetExpiration

func (o *Schedule1) GetExpiration() time.Time

GetExpiration returns the Expiration field if non-nil, zero value otherwise.

GetExpirationOk

func (o *Schedule1) GetExpirationOk() (*time.Time, bool)

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

SetExpiration

func (o *Schedule1) SetExpiration(v time.Time)

SetExpiration sets Expiration field to given value.

HasExpiration

func (o *Schedule1) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

SetExpirationNil

func (o *Schedule1) SetExpirationNil(b bool)

SetExpirationNil sets the value for Expiration to be an explicit nil

UnsetExpiration

func (o *Schedule1) UnsetExpiration()

UnsetExpiration ensures that no value is present for Expiration, not even an explicit nil

GetTimeZoneId

func (o *Schedule1) GetTimeZoneId() string

GetTimeZoneId returns the TimeZoneId field if non-nil, zero value otherwise.

GetTimeZoneIdOk

func (o *Schedule1) GetTimeZoneIdOk() (*string, bool)

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

SetTimeZoneId

func (o *Schedule1) SetTimeZoneId(v string)

SetTimeZoneId sets TimeZoneId field to given value.

HasTimeZoneId

func (o *Schedule1) HasTimeZoneId() bool

HasTimeZoneId returns a boolean if a field has been set.

SetTimeZoneIdNil

func (o *Schedule1) SetTimeZoneIdNil(b bool)

SetTimeZoneIdNil sets the value for TimeZoneId to be an explicit nil

UnsetTimeZoneId

func (o *Schedule1) UnsetTimeZoneId()

UnsetTimeZoneId ensures that no value is present for TimeZoneId, not even an explicit nil

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