Name | Type | Description | Notes |
---|---|---|---|
Name | string | Name of the Launcher, limited to 255 characters | |
Description | string | Description of the Launcher, limited to 2000 characters | |
Type | string | Launcher type | |
Disabled | bool | State of the Launcher | |
Reference | Pointer to LauncherRequestReference | [optional] | |
Config | string | JSON configuration associated with this Launcher, restricted to a max size of 4KB |
func NewLauncherRequest(name string, description string, type_ string, disabled bool, config string, ) *LauncherRequest
NewLauncherRequest instantiates a new LauncherRequest 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
func NewLauncherRequestWithDefaults() *LauncherRequest
NewLauncherRequestWithDefaults instantiates a new LauncherRequest 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
func (o *LauncherRequest) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *LauncherRequest) 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.
func (o *LauncherRequest) SetName(v string)
SetName sets Name field to given value.
func (o *LauncherRequest) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *LauncherRequest) GetDescriptionOk() (*string, bool)
GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *LauncherRequest) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *LauncherRequest) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
func (o *LauncherRequest) GetTypeOk() (*string, bool)
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *LauncherRequest) SetType(v string)
SetType sets Type field to given value.
func (o *LauncherRequest) GetDisabled() bool
GetDisabled returns the Disabled field if non-nil, zero value otherwise.
func (o *LauncherRequest) GetDisabledOk() (*bool, bool)
GetDisabledOk returns a tuple with the Disabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *LauncherRequest) SetDisabled(v bool)
SetDisabled sets Disabled field to given value.
func (o *LauncherRequest) GetReference() LauncherRequestReference
GetReference returns the Reference field if non-nil, zero value otherwise.
func (o *LauncherRequest) GetReferenceOk() (*LauncherRequestReference, bool)
GetReferenceOk returns a tuple with the Reference field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *LauncherRequest) SetReference(v LauncherRequestReference)
SetReference sets Reference field to given value.
func (o *LauncherRequest) HasReference() bool
HasReference returns a boolean if a field has been set.
func (o *LauncherRequest) GetConfig() string
GetConfig returns the Config field if non-nil, zero value otherwise.
func (o *LauncherRequest) GetConfigOk() (*string, bool)
GetConfigOk returns a tuple with the Config field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *LauncherRequest) SetConfig(v string)
SetConfig sets Config field to given value.