Skip to content

Latest commit

 

History

History
165 lines (90 loc) · 4.28 KB

AdvancedSearch.md

File metadata and controls

165 lines (90 loc) · 4.28 KB

AdvancedSearch

Properties

Name Type Description Notes
Id Pointer to string [optional] [readonly]
Name string
Criteria Pointer to []SmartSearchCriterion [optional]
DisplayFields Pointer to []string [optional]
SiteId Pointer to NullableString [optional]

Methods

NewAdvancedSearch

func NewAdvancedSearch(name string, ) *AdvancedSearch

NewAdvancedSearch instantiates a new AdvancedSearch 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

NewAdvancedSearchWithDefaults

func NewAdvancedSearchWithDefaults() *AdvancedSearch

NewAdvancedSearchWithDefaults instantiates a new AdvancedSearch 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 *AdvancedSearch) GetId() string

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

GetIdOk

func (o *AdvancedSearch) GetIdOk() (*string, 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 *AdvancedSearch) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *AdvancedSearch) HasId() bool

HasId returns a boolean if a field has been set.

GetName

func (o *AdvancedSearch) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *AdvancedSearch) GetNameOk() (*string, bool)

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

SetName

func (o *AdvancedSearch) SetName(v string)

SetName sets Name field to given value.

GetCriteria

func (o *AdvancedSearch) GetCriteria() []SmartSearchCriterion

GetCriteria returns the Criteria field if non-nil, zero value otherwise.

GetCriteriaOk

func (o *AdvancedSearch) GetCriteriaOk() (*[]SmartSearchCriterion, bool)

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

SetCriteria

func (o *AdvancedSearch) SetCriteria(v []SmartSearchCriterion)

SetCriteria sets Criteria field to given value.

HasCriteria

func (o *AdvancedSearch) HasCriteria() bool

HasCriteria returns a boolean if a field has been set.

GetDisplayFields

func (o *AdvancedSearch) GetDisplayFields() []string

GetDisplayFields returns the DisplayFields field if non-nil, zero value otherwise.

GetDisplayFieldsOk

func (o *AdvancedSearch) GetDisplayFieldsOk() (*[]string, bool)

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

SetDisplayFields

func (o *AdvancedSearch) SetDisplayFields(v []string)

SetDisplayFields sets DisplayFields field to given value.

HasDisplayFields

func (o *AdvancedSearch) HasDisplayFields() bool

HasDisplayFields returns a boolean if a field has been set.

GetSiteId

func (o *AdvancedSearch) GetSiteId() string

GetSiteId returns the SiteId field if non-nil, zero value otherwise.

GetSiteIdOk

func (o *AdvancedSearch) GetSiteIdOk() (*string, bool)

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

SetSiteId

func (o *AdvancedSearch) SetSiteId(v string)

SetSiteId sets SiteId field to given value.

HasSiteId

func (o *AdvancedSearch) HasSiteId() bool

HasSiteId returns a boolean if a field has been set.

SetSiteIdNil

func (o *AdvancedSearch) SetSiteIdNil(b bool)

SetSiteIdNil sets the value for SiteId to be an explicit nil

UnsetSiteId

func (o *AdvancedSearch) UnsetSiteId()

UnsetSiteId ensures that no value is present for SiteId, not even an explicit nil

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