Skip to content

Latest commit

 

History

History
195 lines (108 loc) · 4.85 KB

App.md

File metadata and controls

195 lines (108 loc) · 4.85 KB

App

Properties

Name Type Description Notes
Name string Name of the app
Active Pointer to NullableBool Is the app active or inactive [optional]
Registered Pointer to NullableBool Is the app already registered or not [optional]
Metadata Pointer to map[string]interface{} Delivers the apps metadata to handle it in the app store [optional]
Version Pointer to NullableString the apps version [optional]

Methods

NewApp

func NewApp(name string, ) *App

NewApp instantiates a new App 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

NewAppWithDefaults

func NewAppWithDefaults() *App

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

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

GetNameOk

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

SetName sets Name field to given value.

GetActive

func (o *App) GetActive() bool

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

GetActiveOk

func (o *App) 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 *App) SetActive(v bool)

SetActive sets Active field to given value.

HasActive

func (o *App) HasActive() bool

HasActive returns a boolean if a field has been set.

SetActiveNil

func (o *App) SetActiveNil(b bool)

SetActiveNil sets the value for Active to be an explicit nil

UnsetActive

func (o *App) UnsetActive()

UnsetActive ensures that no value is present for Active, not even an explicit nil

GetRegistered

func (o *App) GetRegistered() bool

GetRegistered returns the Registered field if non-nil, zero value otherwise.

GetRegisteredOk

func (o *App) GetRegisteredOk() (*bool, bool)

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

SetRegistered

func (o *App) SetRegistered(v bool)

SetRegistered sets Registered field to given value.

HasRegistered

func (o *App) HasRegistered() bool

HasRegistered returns a boolean if a field has been set.

SetRegisteredNil

func (o *App) SetRegisteredNil(b bool)

SetRegisteredNil sets the value for Registered to be an explicit nil

UnsetRegistered

func (o *App) UnsetRegistered()

UnsetRegistered ensures that no value is present for Registered, not even an explicit nil

GetMetadata

func (o *App) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field if non-nil, zero value otherwise.

GetMetadataOk

func (o *App) GetMetadataOk() (*map[string]interface{}, bool)

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

SetMetadata

func (o *App) SetMetadata(v map[string]interface{})

SetMetadata sets Metadata field to given value.

HasMetadata

func (o *App) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

SetMetadataNil

func (o *App) SetMetadataNil(b bool)

SetMetadataNil sets the value for Metadata to be an explicit nil

UnsetMetadata

func (o *App) UnsetMetadata()

UnsetMetadata ensures that no value is present for Metadata, not even an explicit nil

GetVersion

func (o *App) GetVersion() string

GetVersion returns the Version field if non-nil, zero value otherwise.

GetVersionOk

func (o *App) GetVersionOk() (*string, bool)

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

SetVersion

func (o *App) SetVersion(v string)

SetVersion sets Version field to given value.

HasVersion

func (o *App) HasVersion() bool

HasVersion returns a boolean if a field has been set.

SetVersionNil

func (o *App) SetVersionNil(b bool)

SetVersionNil sets the value for Version to be an explicit nil

UnsetVersion

func (o *App) UnsetVersion()

UnsetVersion ensures that no value is present for Version, not even an explicit nil

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