Name | Type | Description | Notes |
---|---|---|---|
OrderBy | Pointer to string | The name of the field to order the results by. Prefix a field name with `-` to reverse the sort order. New in version 2.1.0 | [optional] |
PageOffset | Pointer to int32 | The number of items to skip before starting to collect the result set. | [optional] |
PageLimit | Pointer to int32 | The numbers of items to return. | [optional] [default to 100] |
DagIds | Pointer to []string | Return objects with specific DAG IDs. The value can be repeated to retrieve multiple matching values (OR condition). | [optional] |
States | Pointer to []string | Return objects with specific states. The value can be repeated to retrieve multiple matching values (OR condition). | [optional] |
ExecutionDateGte | Pointer to time.Time | Returns objects greater or equal to the specified date. This can be combined with execution_date_lte key to receive only the selected period. | [optional] |
ExecutionDateLte | Pointer to time.Time | Returns objects less than or equal to the specified date. This can be combined with execution_date_gte key to receive only the selected period. | [optional] |
StartDateGte | Pointer to time.Time | Returns objects greater or equal the specified date. This can be combined with start_date_lte key to receive only the selected period. | [optional] |
StartDateLte | Pointer to time.Time | Returns objects less or equal the specified date. This can be combined with start_date_gte parameter to receive only the selected period | [optional] |
EndDateGte | Pointer to time.Time | Returns objects greater or equal the specified date. This can be combined with end_date_lte parameter to receive only the selected period. | [optional] |
EndDateLte | Pointer to time.Time | Returns objects less than or equal to the specified date. This can be combined with end_date_gte parameter to receive only the selected period. | [optional] |
func NewListDagRunsForm() *ListDagRunsForm
NewListDagRunsForm instantiates a new ListDagRunsForm 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 NewListDagRunsFormWithDefaults() *ListDagRunsForm
NewListDagRunsFormWithDefaults instantiates a new ListDagRunsForm 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 *ListDagRunsForm) GetOrderBy() string
GetOrderBy returns the OrderBy field if non-nil, zero value otherwise.
func (o *ListDagRunsForm) GetOrderByOk() (*string, bool)
GetOrderByOk returns a tuple with the OrderBy field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ListDagRunsForm) SetOrderBy(v string)
SetOrderBy sets OrderBy field to given value.
func (o *ListDagRunsForm) HasOrderBy() bool
HasOrderBy returns a boolean if a field has been set.
func (o *ListDagRunsForm) GetPageOffset() int32
GetPageOffset returns the PageOffset field if non-nil, zero value otherwise.
func (o *ListDagRunsForm) GetPageOffsetOk() (*int32, bool)
GetPageOffsetOk returns a tuple with the PageOffset field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ListDagRunsForm) SetPageOffset(v int32)
SetPageOffset sets PageOffset field to given value.
func (o *ListDagRunsForm) HasPageOffset() bool
HasPageOffset returns a boolean if a field has been set.
func (o *ListDagRunsForm) GetPageLimit() int32
GetPageLimit returns the PageLimit field if non-nil, zero value otherwise.
func (o *ListDagRunsForm) GetPageLimitOk() (*int32, bool)
GetPageLimitOk returns a tuple with the PageLimit field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ListDagRunsForm) SetPageLimit(v int32)
SetPageLimit sets PageLimit field to given value.
func (o *ListDagRunsForm) HasPageLimit() bool
HasPageLimit returns a boolean if a field has been set.
func (o *ListDagRunsForm) GetDagIds() []string
GetDagIds returns the DagIds field if non-nil, zero value otherwise.
func (o *ListDagRunsForm) GetDagIdsOk() (*[]string, bool)
GetDagIdsOk returns a tuple with the DagIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ListDagRunsForm) SetDagIds(v []string)
SetDagIds sets DagIds field to given value.
func (o *ListDagRunsForm) HasDagIds() bool
HasDagIds returns a boolean if a field has been set.
func (o *ListDagRunsForm) GetStates() []string
GetStates returns the States field if non-nil, zero value otherwise.
func (o *ListDagRunsForm) GetStatesOk() (*[]string, bool)
GetStatesOk returns a tuple with the States field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ListDagRunsForm) SetStates(v []string)
SetStates sets States field to given value.
func (o *ListDagRunsForm) HasStates() bool
HasStates returns a boolean if a field has been set.
func (o *ListDagRunsForm) GetExecutionDateGte() time.Time
GetExecutionDateGte returns the ExecutionDateGte field if non-nil, zero value otherwise.
func (o *ListDagRunsForm) GetExecutionDateGteOk() (*time.Time, bool)
GetExecutionDateGteOk returns a tuple with the ExecutionDateGte field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ListDagRunsForm) SetExecutionDateGte(v time.Time)
SetExecutionDateGte sets ExecutionDateGte field to given value.
func (o *ListDagRunsForm) HasExecutionDateGte() bool
HasExecutionDateGte returns a boolean if a field has been set.
func (o *ListDagRunsForm) GetExecutionDateLte() time.Time
GetExecutionDateLte returns the ExecutionDateLte field if non-nil, zero value otherwise.
func (o *ListDagRunsForm) GetExecutionDateLteOk() (*time.Time, bool)
GetExecutionDateLteOk returns a tuple with the ExecutionDateLte field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ListDagRunsForm) SetExecutionDateLte(v time.Time)
SetExecutionDateLte sets ExecutionDateLte field to given value.
func (o *ListDagRunsForm) HasExecutionDateLte() bool
HasExecutionDateLte returns a boolean if a field has been set.
func (o *ListDagRunsForm) GetStartDateGte() time.Time
GetStartDateGte returns the StartDateGte field if non-nil, zero value otherwise.
func (o *ListDagRunsForm) GetStartDateGteOk() (*time.Time, bool)
GetStartDateGteOk returns a tuple with the StartDateGte field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ListDagRunsForm) SetStartDateGte(v time.Time)
SetStartDateGte sets StartDateGte field to given value.
func (o *ListDagRunsForm) HasStartDateGte() bool
HasStartDateGte returns a boolean if a field has been set.
func (o *ListDagRunsForm) GetStartDateLte() time.Time
GetStartDateLte returns the StartDateLte field if non-nil, zero value otherwise.
func (o *ListDagRunsForm) GetStartDateLteOk() (*time.Time, bool)
GetStartDateLteOk returns a tuple with the StartDateLte field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ListDagRunsForm) SetStartDateLte(v time.Time)
SetStartDateLte sets StartDateLte field to given value.
func (o *ListDagRunsForm) HasStartDateLte() bool
HasStartDateLte returns a boolean if a field has been set.
func (o *ListDagRunsForm) GetEndDateGte() time.Time
GetEndDateGte returns the EndDateGte field if non-nil, zero value otherwise.
func (o *ListDagRunsForm) GetEndDateGteOk() (*time.Time, bool)
GetEndDateGteOk returns a tuple with the EndDateGte field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ListDagRunsForm) SetEndDateGte(v time.Time)
SetEndDateGte sets EndDateGte field to given value.
func (o *ListDagRunsForm) HasEndDateGte() bool
HasEndDateGte returns a boolean if a field has been set.
func (o *ListDagRunsForm) GetEndDateLte() time.Time
GetEndDateLte returns the EndDateLte field if non-nil, zero value otherwise.
func (o *ListDagRunsForm) GetEndDateLteOk() (*time.Time, bool)
GetEndDateLteOk returns a tuple with the EndDateLte field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ListDagRunsForm) SetEndDateLte(v time.Time)
SetEndDateLte sets EndDateLte field to given value.
func (o *ListDagRunsForm) HasEndDateLte() bool
HasEndDateLte returns a boolean if a field has been set.