Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 3.09 KB

GroupQuery.md

File metadata and controls

108 lines (59 loc) · 3.09 KB

GroupQuery

Properties

Name Type Description Notes
Select Pointer to string What kind of data we want to include. Here we can get policy servers/relay by setting `nodeAndPolicyServer`. Only used if `where` is defined. [optional] [default to "node"]
Composition Pointer to string Boolean operator to use between each `where` criteria. [optional] [default to "and"]
Where Pointer to []GroupQueryWhereInner List of criteria [optional]

Methods

NewGroupQuery

func NewGroupQuery() *GroupQuery

NewGroupQuery instantiates a new GroupQuery 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

NewGroupQueryWithDefaults

func NewGroupQueryWithDefaults() *GroupQuery

NewGroupQueryWithDefaults instantiates a new GroupQuery 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

GetSelect

func (o *GroupQuery) GetSelect() string

GetSelect returns the Select field if non-nil, zero value otherwise.

GetSelectOk

func (o *GroupQuery) GetSelectOk() (*string, bool)

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

SetSelect

func (o *GroupQuery) SetSelect(v string)

SetSelect sets Select field to given value.

HasSelect

func (o *GroupQuery) HasSelect() bool

HasSelect returns a boolean if a field has been set.

GetComposition

func (o *GroupQuery) GetComposition() string

GetComposition returns the Composition field if non-nil, zero value otherwise.

GetCompositionOk

func (o *GroupQuery) GetCompositionOk() (*string, bool)

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

SetComposition

func (o *GroupQuery) SetComposition(v string)

SetComposition sets Composition field to given value.

HasComposition

func (o *GroupQuery) HasComposition() bool

HasComposition returns a boolean if a field has been set.

GetWhere

func (o *GroupQuery) GetWhere() []GroupQueryWhereInner

GetWhere returns the Where field if non-nil, zero value otherwise.

GetWhereOk

func (o *GroupQuery) GetWhereOk() (*[]GroupQueryWhereInner, bool)

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

SetWhere

func (o *GroupQuery) SetWhere(v []GroupQueryWhereInner)

SetWhere sets Where field to given value.

HasWhere

func (o *GroupQuery) HasWhere() bool

HasWhere returns a boolean if a field has been set.

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