Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 4.73 KB

RotationalGroupPlatform.md

File metadata and controls

160 lines (87 loc) · 4.73 KB

RotationalGroupPlatform

Properties

Name Type Description Notes
Active Pointer to bool Indicates whether a platform is active or inactive. An inactive platform cannot be assigned to accounts but will continue to manage accounts that were already assigned to it [optional]
GracePeriod Pointer to int32 Number of minutes between the rotation of roles between the accounts (Active/Inactive) and the beginning of the password change process for the current Inactive Account [optional]
ID Pointer to int64 Unique ID of the platform in the system [optional]
PlatformID Pointer to string Unique textual representation of the platform in the system [optional]
Name Pointer to string Display name of the platform [optional]

Methods

NewRotationalGroupPlatform

func NewRotationalGroupPlatform() *RotationalGroupPlatform

NewRotationalGroupPlatform instantiates a new RotationalGroupPlatform 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

NewRotationalGroupPlatformWithDefaults

func NewRotationalGroupPlatformWithDefaults() *RotationalGroupPlatform

NewRotationalGroupPlatformWithDefaults instantiates a new RotationalGroupPlatform 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

GetActive

func (o *RotationalGroupPlatform) GetActive() bool

GetActive returns the Active field if non-nil, zero value otherwise.

GetActiveOk

func (o *RotationalGroupPlatform) GetActiveOk() (*bool, bool)

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

SetActive

func (o *RotationalGroupPlatform) SetActive(v bool)

SetActive sets Active field to given value.

HasActive

func (o *RotationalGroupPlatform) HasActive() bool

HasActive returns a boolean if a field has been set.

GetGracePeriod

func (o *RotationalGroupPlatform) GetGracePeriod() int32

GetGracePeriod returns the GracePeriod field if non-nil, zero value otherwise.

GetGracePeriodOk

func (o *RotationalGroupPlatform) GetGracePeriodOk() (*int32, bool)

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

SetGracePeriod

func (o *RotationalGroupPlatform) SetGracePeriod(v int32)

SetGracePeriod sets GracePeriod field to given value.

HasGracePeriod

func (o *RotationalGroupPlatform) HasGracePeriod() bool

HasGracePeriod returns a boolean if a field has been set.

GetID

func (o *RotationalGroupPlatform) GetID() int64

GetID returns the ID field if non-nil, zero value otherwise.

GetIDOk

func (o *RotationalGroupPlatform) GetIDOk() (*int64, 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 *RotationalGroupPlatform) SetID(v int64)

SetID sets ID field to given value.

HasID

func (o *RotationalGroupPlatform) HasID() bool

HasID returns a boolean if a field has been set.

GetPlatformID

func (o *RotationalGroupPlatform) GetPlatformID() string

GetPlatformID returns the PlatformID field if non-nil, zero value otherwise.

GetPlatformIDOk

func (o *RotationalGroupPlatform) GetPlatformIDOk() (*string, bool)

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

SetPlatformID

func (o *RotationalGroupPlatform) SetPlatformID(v string)

SetPlatformID sets PlatformID field to given value.

HasPlatformID

func (o *RotationalGroupPlatform) HasPlatformID() bool

HasPlatformID returns a boolean if a field has been set.

GetName

func (o *RotationalGroupPlatform) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *RotationalGroupPlatform) HasName() bool

HasName returns a boolean if a field has been set.

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