Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 4.65 KB

ClientPolicyRepresentation.md

File metadata and controls

160 lines (87 loc) · 4.65 KB

ClientPolicyRepresentation

Properties

Name Type Description Notes
Name Pointer to string [optional]
Description Pointer to string [optional]
Enabled Pointer to bool [optional]
Conditions Pointer to []ClientPolicyConditionRepresentation [optional]
Profiles Pointer to []string [optional]

Methods

NewClientPolicyRepresentation

func NewClientPolicyRepresentation() *ClientPolicyRepresentation

NewClientPolicyRepresentation instantiates a new ClientPolicyRepresentation 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

NewClientPolicyRepresentationWithDefaults

func NewClientPolicyRepresentationWithDefaults() *ClientPolicyRepresentation

NewClientPolicyRepresentationWithDefaults instantiates a new ClientPolicyRepresentation 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 *ClientPolicyRepresentation) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *ClientPolicyRepresentation) HasName() bool

HasName returns a boolean if a field has been set.

GetDescription

func (o *ClientPolicyRepresentation) GetDescription() string

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *ClientPolicyRepresentation) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetEnabled

func (o *ClientPolicyRepresentation) GetEnabled() bool

GetEnabled returns the Enabled field if non-nil, zero value otherwise.

GetEnabledOk

func (o *ClientPolicyRepresentation) GetEnabledOk() (*bool, bool)

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

SetEnabled

func (o *ClientPolicyRepresentation) SetEnabled(v bool)

SetEnabled sets Enabled field to given value.

HasEnabled

func (o *ClientPolicyRepresentation) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

GetConditions

func (o *ClientPolicyRepresentation) GetConditions() []ClientPolicyConditionRepresentation

GetConditions returns the Conditions field if non-nil, zero value otherwise.

GetConditionsOk

func (o *ClientPolicyRepresentation) GetConditionsOk() (*[]ClientPolicyConditionRepresentation, bool)

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

SetConditions

func (o *ClientPolicyRepresentation) SetConditions(v []ClientPolicyConditionRepresentation)

SetConditions sets Conditions field to given value.

HasConditions

func (o *ClientPolicyRepresentation) HasConditions() bool

HasConditions returns a boolean if a field has been set.

GetProfiles

func (o *ClientPolicyRepresentation) GetProfiles() []string

GetProfiles returns the Profiles field if non-nil, zero value otherwise.

GetProfilesOk

func (o *ClientPolicyRepresentation) GetProfilesOk() (*[]string, bool)

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

SetProfiles

func (o *ClientPolicyRepresentation) SetProfiles(v []string)

SetProfiles sets Profiles field to given value.

HasProfiles

func (o *ClientPolicyRepresentation) HasProfiles() bool

HasProfiles returns a boolean if a field has been set.

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