Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.44 KB

ApplicationAttributes.md

File metadata and controls

82 lines (45 loc) · 2.44 KB

ApplicationAttributes

Properties

Name Type Description Notes
Identifier Pointer to string [optional]
Attributes Pointer to Attributes [optional]

Methods

NewApplicationAttributes

func NewApplicationAttributes() *ApplicationAttributes

NewApplicationAttributes instantiates a new ApplicationAttributes 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

NewApplicationAttributesWithDefaults

func NewApplicationAttributesWithDefaults() *ApplicationAttributes

NewApplicationAttributesWithDefaults instantiates a new ApplicationAttributes 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

GetIdentifier

func (o *ApplicationAttributes) GetIdentifier() string

GetIdentifier returns the Identifier field if non-nil, zero value otherwise.

GetIdentifierOk

func (o *ApplicationAttributes) GetIdentifierOk() (*string, bool)

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

SetIdentifier

func (o *ApplicationAttributes) SetIdentifier(v string)

SetIdentifier sets Identifier field to given value.

HasIdentifier

func (o *ApplicationAttributes) HasIdentifier() bool

HasIdentifier returns a boolean if a field has been set.

GetAttributes

func (o *ApplicationAttributes) GetAttributes() Attributes

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

GetAttributesOk

func (o *ApplicationAttributes) GetAttributesOk() (*Attributes, 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 *ApplicationAttributes) SetAttributes(v Attributes)

SetAttributes sets Attributes field to given value.

HasAttributes

func (o *ApplicationAttributes) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

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