Skip to content

Latest commit

 

History

History
175 lines (96 loc) · 5.23 KB

File metadata and controls

175 lines (96 loc) · 5.23 KB

SchedulingScheduledTaskRequest

Properties

Name Type Description Notes
Id Pointer to int32 [optional]
ScheduleType CSSCMSCoreEnumsScheduledTaskType
Enabled Pointer to bool [optional]
Interval Pointer to NullableInt32 [optional]
TimeOfDay Pointer to NullableTime [optional]

Methods

NewSchedulingScheduledTaskRequest

func NewSchedulingScheduledTaskRequest(scheduleType CSSCMSCoreEnumsScheduledTaskType, ) *SchedulingScheduledTaskRequest

NewSchedulingScheduledTaskRequest instantiates a new SchedulingScheduledTaskRequest 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

NewSchedulingScheduledTaskRequestWithDefaults

func NewSchedulingScheduledTaskRequestWithDefaults() *SchedulingScheduledTaskRequest

NewSchedulingScheduledTaskRequestWithDefaults instantiates a new SchedulingScheduledTaskRequest 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

GetId

func (o *SchedulingScheduledTaskRequest) GetId() int32

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *SchedulingScheduledTaskRequest) GetIdOk() (*int32, bool)

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

SetId

func (o *SchedulingScheduledTaskRequest) SetId(v int32)

SetId sets Id field to given value.

HasId

func (o *SchedulingScheduledTaskRequest) HasId() bool

HasId returns a boolean if a field has been set.

GetScheduleType

func (o *SchedulingScheduledTaskRequest) GetScheduleType() CSSCMSCoreEnumsScheduledTaskType

GetScheduleType returns the ScheduleType field if non-nil, zero value otherwise.

GetScheduleTypeOk

func (o *SchedulingScheduledTaskRequest) GetScheduleTypeOk() (*CSSCMSCoreEnumsScheduledTaskType, bool)

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

SetScheduleType

func (o *SchedulingScheduledTaskRequest) SetScheduleType(v CSSCMSCoreEnumsScheduledTaskType)

SetScheduleType sets ScheduleType field to given value.

GetEnabled

func (o *SchedulingScheduledTaskRequest) GetEnabled() bool

GetEnabled returns the Enabled field if non-nil, zero value otherwise.

GetEnabledOk

func (o *SchedulingScheduledTaskRequest) GetEnabledOk() (*bool, bool)

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

SetEnabled

func (o *SchedulingScheduledTaskRequest) SetEnabled(v bool)

SetEnabled sets Enabled field to given value.

HasEnabled

func (o *SchedulingScheduledTaskRequest) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

GetInterval

func (o *SchedulingScheduledTaskRequest) GetInterval() int32

GetInterval returns the Interval field if non-nil, zero value otherwise.

GetIntervalOk

func (o *SchedulingScheduledTaskRequest) GetIntervalOk() (*int32, bool)

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

SetInterval

func (o *SchedulingScheduledTaskRequest) SetInterval(v int32)

SetInterval sets Interval field to given value.

HasInterval

func (o *SchedulingScheduledTaskRequest) HasInterval() bool

HasInterval returns a boolean if a field has been set.

SetIntervalNil

func (o *SchedulingScheduledTaskRequest) SetIntervalNil(b bool)

SetIntervalNil sets the value for Interval to be an explicit nil

UnsetInterval

func (o *SchedulingScheduledTaskRequest) UnsetInterval()

UnsetInterval ensures that no value is present for Interval, not even an explicit nil

GetTimeOfDay

func (o *SchedulingScheduledTaskRequest) GetTimeOfDay() time.Time

GetTimeOfDay returns the TimeOfDay field if non-nil, zero value otherwise.

GetTimeOfDayOk

func (o *SchedulingScheduledTaskRequest) GetTimeOfDayOk() (*time.Time, bool)

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

SetTimeOfDay

func (o *SchedulingScheduledTaskRequest) SetTimeOfDay(v time.Time)

SetTimeOfDay sets TimeOfDay field to given value.

HasTimeOfDay

func (o *SchedulingScheduledTaskRequest) HasTimeOfDay() bool

HasTimeOfDay returns a boolean if a field has been set.

SetTimeOfDayNil

func (o *SchedulingScheduledTaskRequest) SetTimeOfDayNil(b bool)

SetTimeOfDayNil sets the value for TimeOfDay to be an explicit nil

UnsetTimeOfDay

func (o *SchedulingScheduledTaskRequest) UnsetTimeOfDay()

UnsetTimeOfDay ensures that no value is present for TimeOfDay, not even an explicit nil

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