Skip to content

Latest commit

 

History

History
114 lines (61 loc) · 3.04 KB

PluginConfigArgs.md

File metadata and controls

114 lines (61 loc) · 3.04 KB

PluginConfigArgs

Properties

Name Type Description Notes
Description string description
Name string name
Settable []string settable
Value []string value

Methods

NewPluginConfigArgs

func NewPluginConfigArgs(description string, name string, settable []string, value []string, ) *PluginConfigArgs

NewPluginConfigArgs instantiates a new PluginConfigArgs 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

NewPluginConfigArgsWithDefaults

func NewPluginConfigArgsWithDefaults() *PluginConfigArgs

NewPluginConfigArgsWithDefaults instantiates a new PluginConfigArgs 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

GetDescription

func (o *PluginConfigArgs) GetDescription() string

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

GetDescriptionOk

func (o *PluginConfigArgs) 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 *PluginConfigArgs) SetDescription(v string)

SetDescription sets Description field to given value.

GetName

func (o *PluginConfigArgs) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetSettable

func (o *PluginConfigArgs) GetSettable() []string

GetSettable returns the Settable field if non-nil, zero value otherwise.

GetSettableOk

func (o *PluginConfigArgs) GetSettableOk() (*[]string, bool)

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

SetSettable

func (o *PluginConfigArgs) SetSettable(v []string)

SetSettable sets Settable field to given value.

GetValue

func (o *PluginConfigArgs) GetValue() []string

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

GetValueOk

func (o *PluginConfigArgs) 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 *PluginConfigArgs) SetValue(v []string)

SetValue sets Value field to given value.

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