Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.33 KB

SortItem.md

File metadata and controls

82 lines (45 loc) · 2.33 KB

SortItem

Properties

Name Type Description Notes
Property Pointer to SortItemProperty [optional] [default to SORTITEMPROPERTY_CHANGE_LOG_UPDATED_DATE_TIME]
Direction Pointer to SortItemDirection [optional] [default to SORTITEMDIRECTION_DESC]

Methods

NewSortItem

func NewSortItem() *SortItem

NewSortItem instantiates a new SortItem 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

NewSortItemWithDefaults

func NewSortItemWithDefaults() *SortItem

NewSortItemWithDefaults instantiates a new SortItem 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

GetProperty

func (o *SortItem) GetProperty() SortItemProperty

GetProperty returns the Property field if non-nil, zero value otherwise.

GetPropertyOk

func (o *SortItem) GetPropertyOk() (*SortItemProperty, bool)

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

SetProperty

func (o *SortItem) SetProperty(v SortItemProperty)

SetProperty sets Property field to given value.

HasProperty

func (o *SortItem) HasProperty() bool

HasProperty returns a boolean if a field has been set.

GetDirection

func (o *SortItem) GetDirection() SortItemDirection

GetDirection returns the Direction field if non-nil, zero value otherwise.

GetDirectionOk

func (o *SortItem) GetDirectionOk() (*SortItemDirection, bool)

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

SetDirection

func (o *SortItem) SetDirection(v SortItemDirection)

SetDirection sets Direction field to given value.

HasDirection

func (o *SortItem) HasDirection() bool

HasDirection returns a boolean if a field has been set.

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