Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 1.69 KB

App.md

File metadata and controls

72 lines (39 loc) · 1.69 KB

App

Properties

Name Type Description Notes
Name string
Label string

Methods

NewApp

func NewApp(name string, label 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.

GetLabel

func (o *App) GetLabel() string

GetLabel returns the Label field if non-nil, zero value otherwise.

GetLabelOk

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

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

SetLabel

func (o *App) SetLabel(v string)

SetLabel sets Label field to given value.

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