Skip to content

Latest commit

 

History

History
181 lines (98 loc) · 5.2 KB

SystemGroupPost.md

File metadata and controls

181 lines (98 loc) · 5.2 KB

SystemGroupPost

Properties

Name Type Description Notes
Attributes Pointer to map[string]interface{} The graph attributes. [optional]
Description Pointer to string Description of a System Group [optional]
Email Pointer to string Email address of a System Group [optional]
MemberQuery Pointer to FilterQuery [optional]
MemberQueryExemptions Pointer to []GraphObject Array of GraphObjects exempted from the query [optional]
Name string Display name of a System Group.

Methods

NewSystemGroupPost

func NewSystemGroupPost(name string, ) *SystemGroupPost

NewSystemGroupPost instantiates a new SystemGroupPost 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

NewSystemGroupPostWithDefaults

func NewSystemGroupPostWithDefaults() *SystemGroupPost

NewSystemGroupPostWithDefaults instantiates a new SystemGroupPost 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

GetAttributes

func (o *SystemGroupPost) GetAttributes() map[string]interface{}

GetAttributes returns the Attributes field if non-nil, zero value otherwise.

GetAttributesOk

func (o *SystemGroupPost) GetAttributesOk() (*map[string]interface{}, bool)

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

SetAttributes

func (o *SystemGroupPost) SetAttributes(v map[string]interface{})

SetAttributes sets Attributes field to given value.

HasAttributes

func (o *SystemGroupPost) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

GetDescription

func (o *SystemGroupPost) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *SystemGroupPost) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *SystemGroupPost) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *SystemGroupPost) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetEmail

func (o *SystemGroupPost) GetEmail() string

GetEmail returns the Email field if non-nil, zero value otherwise.

GetEmailOk

func (o *SystemGroupPost) GetEmailOk() (*string, bool)

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

SetEmail

func (o *SystemGroupPost) SetEmail(v string)

SetEmail sets Email field to given value.

HasEmail

func (o *SystemGroupPost) HasEmail() bool

HasEmail returns a boolean if a field has been set.

GetMemberQuery

func (o *SystemGroupPost) GetMemberQuery() FilterQuery

GetMemberQuery returns the MemberQuery field if non-nil, zero value otherwise.

GetMemberQueryOk

func (o *SystemGroupPost) GetMemberQueryOk() (*FilterQuery, bool)

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

SetMemberQuery

func (o *SystemGroupPost) SetMemberQuery(v FilterQuery)

SetMemberQuery sets MemberQuery field to given value.

HasMemberQuery

func (o *SystemGroupPost) HasMemberQuery() bool

HasMemberQuery returns a boolean if a field has been set.

GetMemberQueryExemptions

func (o *SystemGroupPost) GetMemberQueryExemptions() []GraphObject

GetMemberQueryExemptions returns the MemberQueryExemptions field if non-nil, zero value otherwise.

GetMemberQueryExemptionsOk

func (o *SystemGroupPost) GetMemberQueryExemptionsOk() (*[]GraphObject, bool)

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

SetMemberQueryExemptions

func (o *SystemGroupPost) SetMemberQueryExemptions(v []GraphObject)

SetMemberQueryExemptions sets MemberQueryExemptions field to given value.

HasMemberQueryExemptions

func (o *SystemGroupPost) HasMemberQueryExemptions() bool

HasMemberQueryExemptions returns a boolean if a field has been set.

GetName

func (o *SystemGroupPost) GetName() string

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

GetNameOk

func (o *SystemGroupPost) 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 *SystemGroupPost) SetName(v string)

SetName sets Name field to given value.

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