Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 5.65 KB

CreateApplicationSchema.md

File metadata and controls

186 lines (101 loc) · 5.65 KB

CreateApplicationSchema

Properties

Name Type Description Notes
AppName Pointer to string Name of the application [optional]
SdkVersion Pointer to string Which SDK and version the application reporting uses. Typically represented as `<identifier>:<version>` [optional]
Strategies Pointer to []string Which strategies the application has loaded. Useful when trying to figure out if your custom strategy has been loaded in the SDK [optional]
Url Pointer to string A link to reference the application reporting the metrics. Could for instance be a GitHub link to the repository of the application [optional]
Color Pointer to string Css color to be used to color the application's entry in the application list [optional]
Icon Pointer to string An URL to an icon file to be used for the applications's entry in the application list [optional]

Methods

NewCreateApplicationSchema

func NewCreateApplicationSchema() *CreateApplicationSchema

NewCreateApplicationSchema instantiates a new CreateApplicationSchema 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

NewCreateApplicationSchemaWithDefaults

func NewCreateApplicationSchemaWithDefaults() *CreateApplicationSchema

NewCreateApplicationSchemaWithDefaults instantiates a new CreateApplicationSchema 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 *CreateApplicationSchema) GetAppName() string

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

GetAppNameOk

func (o *CreateApplicationSchema) 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 *CreateApplicationSchema) SetAppName(v string)

SetAppName sets AppName field to given value.

HasAppName

func (o *CreateApplicationSchema) HasAppName() bool

HasAppName returns a boolean if a field has been set.

GetSdkVersion

func (o *CreateApplicationSchema) GetSdkVersion() string

GetSdkVersion returns the SdkVersion field if non-nil, zero value otherwise.

GetSdkVersionOk

func (o *CreateApplicationSchema) GetSdkVersionOk() (*string, bool)

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

SetSdkVersion

func (o *CreateApplicationSchema) SetSdkVersion(v string)

SetSdkVersion sets SdkVersion field to given value.

HasSdkVersion

func (o *CreateApplicationSchema) HasSdkVersion() bool

HasSdkVersion returns a boolean if a field has been set.

GetStrategies

func (o *CreateApplicationSchema) GetStrategies() []string

GetStrategies returns the Strategies field if non-nil, zero value otherwise.

GetStrategiesOk

func (o *CreateApplicationSchema) GetStrategiesOk() (*[]string, bool)

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

SetStrategies

func (o *CreateApplicationSchema) SetStrategies(v []string)

SetStrategies sets Strategies field to given value.

HasStrategies

func (o *CreateApplicationSchema) HasStrategies() bool

HasStrategies returns a boolean if a field has been set.

GetUrl

func (o *CreateApplicationSchema) GetUrl() string

GetUrl returns the Url field if non-nil, zero value otherwise.

GetUrlOk

func (o *CreateApplicationSchema) GetUrlOk() (*string, bool)

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

SetUrl

func (o *CreateApplicationSchema) SetUrl(v string)

SetUrl sets Url field to given value.

HasUrl

func (o *CreateApplicationSchema) HasUrl() bool

HasUrl returns a boolean if a field has been set.

GetColor

func (o *CreateApplicationSchema) GetColor() string

GetColor returns the Color field if non-nil, zero value otherwise.

GetColorOk

func (o *CreateApplicationSchema) GetColorOk() (*string, bool)

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

SetColor

func (o *CreateApplicationSchema) SetColor(v string)

SetColor sets Color field to given value.

HasColor

func (o *CreateApplicationSchema) HasColor() bool

HasColor returns a boolean if a field has been set.

GetIcon

func (o *CreateApplicationSchema) GetIcon() string

GetIcon returns the Icon field if non-nil, zero value otherwise.

GetIconOk

func (o *CreateApplicationSchema) GetIconOk() (*string, bool)

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

SetIcon

func (o *CreateApplicationSchema) SetIcon(v string)

SetIcon sets Icon field to given value.

HasIcon

func (o *CreateApplicationSchema) HasIcon() bool

HasIcon returns a boolean if a field has been set.

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