Skip to content

Latest commit

 

History

History
98 lines (53 loc) · 2.55 KB

File metadata and controls

98 lines (53 loc) · 2.55 KB

PropertySource

Properties

Name Type Description Notes
Type string
Key string
DefaultValue Pointer to string [optional]

Methods

NewPropertySource

func NewPropertySource(type_ string, key string, ) *PropertySource

NewPropertySource instantiates a new PropertySource 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

NewPropertySourceWithDefaults

func NewPropertySourceWithDefaults() *PropertySource

NewPropertySourceWithDefaults instantiates a new PropertySource 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

GetType

func (o *PropertySource) GetType() string

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

GetTypeOk

func (o *PropertySource) 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 *PropertySource) SetType(v string)

SetType sets Type field to given value.

GetKey

func (o *PropertySource) GetKey() string

GetKey returns the Key field if non-nil, zero value otherwise.

GetKeyOk

func (o *PropertySource) GetKeyOk() (*string, bool)

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

SetKey

func (o *PropertySource) SetKey(v string)

SetKey sets Key field to given value.

GetDefaultValue

func (o *PropertySource) GetDefaultValue() string

GetDefaultValue returns the DefaultValue field if non-nil, zero value otherwise.

GetDefaultValueOk

func (o *PropertySource) GetDefaultValueOk() (*string, bool)

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

SetDefaultValue

func (o *PropertySource) SetDefaultValue(v string)

SetDefaultValue sets DefaultValue field to given value.

HasDefaultValue

func (o *PropertySource) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

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