Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 3.86 KB

CronJobSchedule.md

File metadata and controls

160 lines (87 loc) · 3.86 KB

CronJobSchedule

Properties

Name Type Description Notes
Minute Pointer to string [optional]
Hour Pointer to string [optional]
Dom Pointer to string [optional]
Month Pointer to string [optional]
Dow Pointer to string [optional]

Methods

NewCronJobSchedule

func NewCronJobSchedule() *CronJobSchedule

NewCronJobSchedule instantiates a new CronJobSchedule 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

NewCronJobScheduleWithDefaults

func NewCronJobScheduleWithDefaults() *CronJobSchedule

NewCronJobScheduleWithDefaults instantiates a new CronJobSchedule 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

GetMinute

func (o *CronJobSchedule) GetMinute() string

GetMinute returns the Minute field if non-nil, zero value otherwise.

GetMinuteOk

func (o *CronJobSchedule) GetMinuteOk() (*string, bool)

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

SetMinute

func (o *CronJobSchedule) SetMinute(v string)

SetMinute sets Minute field to given value.

HasMinute

func (o *CronJobSchedule) HasMinute() bool

HasMinute returns a boolean if a field has been set.

GetHour

func (o *CronJobSchedule) GetHour() string

GetHour returns the Hour field if non-nil, zero value otherwise.

GetHourOk

func (o *CronJobSchedule) GetHourOk() (*string, bool)

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

SetHour

func (o *CronJobSchedule) SetHour(v string)

SetHour sets Hour field to given value.

HasHour

func (o *CronJobSchedule) HasHour() bool

HasHour returns a boolean if a field has been set.

GetDom

func (o *CronJobSchedule) GetDom() string

GetDom returns the Dom field if non-nil, zero value otherwise.

GetDomOk

func (o *CronJobSchedule) GetDomOk() (*string, bool)

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

SetDom

func (o *CronJobSchedule) SetDom(v string)

SetDom sets Dom field to given value.

HasDom

func (o *CronJobSchedule) HasDom() bool

HasDom returns a boolean if a field has been set.

GetMonth

func (o *CronJobSchedule) GetMonth() string

GetMonth returns the Month field if non-nil, zero value otherwise.

GetMonthOk

func (o *CronJobSchedule) GetMonthOk() (*string, bool)

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

SetMonth

func (o *CronJobSchedule) SetMonth(v string)

SetMonth sets Month field to given value.

HasMonth

func (o *CronJobSchedule) HasMonth() bool

HasMonth returns a boolean if a field has been set.

GetDow

func (o *CronJobSchedule) GetDow() string

GetDow returns the Dow field if non-nil, zero value otherwise.

GetDowOk

func (o *CronJobSchedule) GetDowOk() (*string, bool)

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

SetDow

func (o *CronJobSchedule) SetDow(v string)

SetDow sets Dow field to given value.

HasDow

func (o *CronJobSchedule) HasDow() bool

HasDow returns a boolean if a field has been set.

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