Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.97 KB

UpdateRoleRequest.md

File metadata and controls

108 lines (59 loc) · 2.97 KB

UpdateRoleRequest

Properties

Name Type Description Notes
Name Pointer to string The name of the role. It should be unique within the tenant. [optional]
Description Pointer to string [optional]
IsDefault Pointer to bool [optional]

Methods

NewUpdateRoleRequest

func NewUpdateRoleRequest() *UpdateRoleRequest

NewUpdateRoleRequest instantiates a new UpdateRoleRequest 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

NewUpdateRoleRequestWithDefaults

func NewUpdateRoleRequestWithDefaults() *UpdateRoleRequest

NewUpdateRoleRequestWithDefaults instantiates a new UpdateRoleRequest 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

GetName

func (o *UpdateRoleRequest) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *UpdateRoleRequest) HasName() bool

HasName returns a boolean if a field has been set.

GetDescription

func (o *UpdateRoleRequest) GetDescription() string

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *UpdateRoleRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetIsDefault

func (o *UpdateRoleRequest) GetIsDefault() bool

GetIsDefault returns the IsDefault field if non-nil, zero value otherwise.

GetIsDefaultOk

func (o *UpdateRoleRequest) GetIsDefaultOk() (*bool, bool)

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

SetIsDefault

func (o *UpdateRoleRequest) SetIsDefault(v bool)

SetIsDefault sets IsDefault field to given value.

HasIsDefault

func (o *UpdateRoleRequest) HasIsDefault() bool

HasIsDefault returns a boolean if a field has been set.

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