Skip to content

Latest commit

 

History

History
106 lines (59 loc) · 2.82 KB

Environment.md

File metadata and controls

106 lines (59 loc) · 2.82 KB

Environment

Properties

Name Type Description Notes
Name Pointer to string [optional] [readonly]
ServiceID Pointer to string Alphanumeric string identifying the service. [optional] [readonly]
ActiveVersion Pointer to int32 [optional] [readonly]

Methods

NewEnvironment

func NewEnvironment() *Environment

NewEnvironment instantiates a new Environment 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

NewEnvironmentWithDefaults

func NewEnvironmentWithDefaults() *Environment

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

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *Environment) HasName() bool

HasName returns a boolean if a field has been set.

GetServiceID

func (o *Environment) GetServiceID() string

GetServiceID returns the ServiceID field if non-nil, zero value otherwise.

GetServiceIDOk

func (o *Environment) GetServiceIDOk() (*string, bool)

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

SetServiceID

func (o *Environment) SetServiceID(v string)

SetServiceID sets ServiceID field to given value.

HasServiceID

func (o *Environment) HasServiceID() bool

HasServiceID returns a boolean if a field has been set.

GetActiveVersion

func (o *Environment) GetActiveVersion() int32

GetActiveVersion returns the ActiveVersion field if non-nil, zero value otherwise.

GetActiveVersionOk

func (o *Environment) GetActiveVersionOk() (*int32, bool)

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

SetActiveVersion

func (o *Environment) SetActiveVersion(v int32)

SetActiveVersion sets ActiveVersion field to given value.

HasActiveVersion

func (o *Environment) HasActiveVersion() bool

HasActiveVersion returns a boolean if a field has been set.

Back to API list | Back to README