Skip to content

Latest commit

 

History

History
135 lines (72 loc) · 3.54 KB

ConfigurationProperty.md

File metadata and controls

135 lines (72 loc) · 3.54 KB

ConfigurationProperty

Properties

Name Type Description Notes
Name string
Value string
Type string
Label string
Description string

Methods

NewConfigurationProperty

func NewConfigurationProperty(name string, value string, type_ string, label string, description string, ) *ConfigurationProperty

NewConfigurationProperty instantiates a new ConfigurationProperty 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

NewConfigurationPropertyWithDefaults

func NewConfigurationPropertyWithDefaults() *ConfigurationProperty

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

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

GetNameOk

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

SetName sets Name field to given value.

GetValue

func (o *ConfigurationProperty) GetValue() string

GetValue returns the Value field if non-nil, zero value otherwise.

GetValueOk

func (o *ConfigurationProperty) GetValueOk() (*string, bool)

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

SetValue

func (o *ConfigurationProperty) SetValue(v string)

SetValue sets Value field to given value.

GetType

func (o *ConfigurationProperty) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *ConfigurationProperty) 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.

SetType

func (o *ConfigurationProperty) SetType(v string)

SetType sets Type field to given value.

GetLabel

func (o *ConfigurationProperty) GetLabel() string

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

GetLabelOk

func (o *ConfigurationProperty) 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 *ConfigurationProperty) SetLabel(v string)

SetLabel sets Label field to given value.

GetDescription

func (o *ConfigurationProperty) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *ConfigurationProperty) 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.

SetDescription

func (o *ConfigurationProperty) SetDescription(v string)

SetDescription sets Description field to given value.

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