Skip to content

Latest commit

 

History

History
113 lines (62 loc) · 3.47 KB

Application.md

File metadata and controls

113 lines (62 loc) · 3.47 KB

Application

Properties

Name Type Description Notes
Id string The unique identifier for the object. 12345678-9abc-def0-1234-56789abcde. The value of the ID property is often, but not exclusively, in the form of a GUID. The value should be treated as an opaque identifier and not based in being a GUID. Null values are not allowed. Read-only. [readonly]
AppRoles Pointer to []AppRole The collection of roles defined for the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. [optional]
DisplayName Pointer to NullableString The display name for the application. [optional]

Methods

NewApplication

func NewApplication(id string, ) *Application

NewApplication instantiates a new Application 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

NewApplicationWithDefaults

func NewApplicationWithDefaults() *Application

NewApplicationWithDefaults instantiates a new Application 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

GetId

func (o *Application) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *Application) GetIdOk() (*string, 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 *Application) SetId(v string)

SetId sets Id field to given value.

GetAppRoles

func (o *Application) GetAppRoles() []AppRole

GetAppRoles returns the AppRoles field if non-nil, zero value otherwise.

GetAppRolesOk

func (o *Application) GetAppRolesOk() (*[]AppRole, bool)

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

SetAppRoles

func (o *Application) SetAppRoles(v []AppRole)

SetAppRoles sets AppRoles field to given value.

HasAppRoles

func (o *Application) HasAppRoles() bool

HasAppRoles returns a boolean if a field has been set.

GetDisplayName

func (o *Application) GetDisplayName() string

GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.

GetDisplayNameOk

func (o *Application) GetDisplayNameOk() (*string, bool)

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

SetDisplayName

func (o *Application) SetDisplayName(v string)

SetDisplayName sets DisplayName field to given value.

HasDisplayName

func (o *Application) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

SetDisplayNameNil

func (o *Application) SetDisplayNameNil(b bool)

SetDisplayNameNil sets the value for DisplayName to be an explicit nil

UnsetDisplayName

func (o *Application) UnsetDisplayName()

UnsetDisplayName ensures that no value is present for DisplayName, not even an explicit nil

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