Skip to content

Latest commit

 

History

History
156 lines (83 loc) · 4.22 KB

File metadata and controls

156 lines (83 loc) · 4.22 KB

AccessRule

Properties

Name Type Description Notes
AccessRuleId string The ID (group ID) of the access rule.
Name string The name of the access rule.
Description string A description of the group.
AdminOwnerId string The ID of the owner of the group.
Status string The status of the access rule.
RuleClauses RuleClauses

Methods

NewAccessRule

func NewAccessRule(accessRuleId string, name string, description string, adminOwnerId string, status string, ruleClauses RuleClauses, ) *AccessRule

NewAccessRule instantiates a new AccessRule 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

NewAccessRuleWithDefaults

func NewAccessRuleWithDefaults() *AccessRule

NewAccessRuleWithDefaults instantiates a new AccessRule 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

GetAccessRuleId

func (o *AccessRule) GetAccessRuleId() string

GetAccessRuleId returns the AccessRuleId field if non-nil, zero value otherwise.

GetAccessRuleIdOk

func (o *AccessRule) GetAccessRuleIdOk() (*string, bool)

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

SetAccessRuleId

func (o *AccessRule) SetAccessRuleId(v string)

SetAccessRuleId sets AccessRuleId field to given value.

GetName

func (o *AccessRule) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetDescription

func (o *AccessRule) GetDescription() string

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

GetDescriptionOk

func (o *AccessRule) 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 *AccessRule) SetDescription(v string)

SetDescription sets Description field to given value.

GetAdminOwnerId

func (o *AccessRule) GetAdminOwnerId() string

GetAdminOwnerId returns the AdminOwnerId field if non-nil, zero value otherwise.

GetAdminOwnerIdOk

func (o *AccessRule) GetAdminOwnerIdOk() (*string, bool)

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

SetAdminOwnerId

func (o *AccessRule) SetAdminOwnerId(v string)

SetAdminOwnerId sets AdminOwnerId field to given value.

GetStatus

func (o *AccessRule) GetStatus() string

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *AccessRule) GetStatusOk() (*string, bool)

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

SetStatus

func (o *AccessRule) SetStatus(v string)

SetStatus sets Status field to given value.

GetRuleClauses

func (o *AccessRule) GetRuleClauses() RuleClauses

GetRuleClauses returns the RuleClauses field if non-nil, zero value otherwise.

GetRuleClausesOk

func (o *AccessRule) GetRuleClausesOk() (*RuleClauses, bool)

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

SetRuleClauses

func (o *AccessRule) SetRuleClauses(v RuleClauses)

SetRuleClauses sets RuleClauses field to given value.

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