Skip to content

Latest commit

 

History

History
127 lines (75 loc) · 3.64 KB

Provider.md

File metadata and controls

127 lines (75 loc) · 3.64 KB

Provider

Properties

Name Type Description Notes
PackageName Pointer to string The package name of the provider. [optional]
Description Pointer to string The description of the provider. [optional]
Version Pointer to string The version of the provider. [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

GetPackageName

func (o *Provider) GetPackageName() string

GetPackageName returns the PackageName field if non-nil, zero value otherwise.

GetPackageNameOk

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

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

SetPackageName

func (o *Provider) SetPackageName(v string)

SetPackageName sets PackageName field to given value.

HasPackageName

func (o *Provider) HasPackageName() bool

HasPackageName returns a boolean if a field has been set.

GetDescription

func (o *Provider) GetDescription() string

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *Provider) HasDescription() bool

HasDescription 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]