Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.19 KB

AppApproval.md

File metadata and controls

82 lines (45 loc) · 2.19 KB

AppApproval

Properties

Name Type Description Notes
AppName Pointer to string The name of the application, should be unique and is used as Application Identifier [optional]
Status Pointer to string [optional]

Methods

NewAppApproval

func NewAppApproval() *AppApproval

NewAppApproval instantiates a new AppApproval 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

NewAppApprovalWithDefaults

func NewAppApprovalWithDefaults() *AppApproval

NewAppApprovalWithDefaults instantiates a new AppApproval 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

GetAppName

func (o *AppApproval) GetAppName() string

GetAppName returns the AppName field if non-nil, zero value otherwise.

GetAppNameOk

func (o *AppApproval) GetAppNameOk() (*string, bool)

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

SetAppName

func (o *AppApproval) SetAppName(v string)

SetAppName sets AppName field to given value.

HasAppName

func (o *AppApproval) HasAppName() bool

HasAppName returns a boolean if a field has been set.

GetStatus

func (o *AppApproval) GetStatus() string

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *AppApproval) GetStatusOk() (*string, bool)

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

SetStatus

func (o *AppApproval) SetStatus(v string)

SetStatus sets Status field to given value.

HasStatus

func (o *AppApproval) HasStatus() bool

HasStatus returns a boolean if a field has been set.

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