Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.02 KB

Provider.md

File metadata and controls

82 lines (45 loc) · 2.02 KB

Provider

Properties

Name Type Description Notes
Name Pointer to string [optional]
Version Pointer to string [optional]

Methods

NewProvider

func NewProvider() *Provider

NewProvider instantiates a new Provider 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

NewProviderWithDefaults

func NewProviderWithDefaults() *Provider

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

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *Provider) HasName() bool

HasName returns a boolean if a field has been set.

GetVersion

func (o *Provider) GetVersion() string

GetVersion returns the Version field if non-nil, zero value otherwise.

GetVersionOk

func (o *Provider) GetVersionOk() (*string, bool)

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

SetVersion

func (o *Provider) SetVersion(v string)

SetVersion sets Version field to given value.

HasVersion

func (o *Provider) HasVersion() bool

HasVersion returns a boolean if a field has been set.

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