Skip to content

Latest commit

 

History

History
174 lines (97 loc) · 4.98 KB

UpdateEnvironmentModel.md

File metadata and controls

174 lines (97 loc) · 4.98 KB

UpdateEnvironmentModel

Properties

Name Type Description Notes
Name Pointer to NullableString The name of the Environment. [optional]
Color Pointer to NullableString The color of the Environment. RGB or HTML color codes are allowed. [optional]
Description Pointer to NullableString The description of the Environment. [optional]
Order Pointer to NullableInt32 The order of the Environment represented on the ConfigCat Dashboard. Determined from an ascending sequence of integers. [optional]

Methods

NewUpdateEnvironmentModel

func NewUpdateEnvironmentModel() *UpdateEnvironmentModel

NewUpdateEnvironmentModel instantiates a new UpdateEnvironmentModel 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

NewUpdateEnvironmentModelWithDefaults

func NewUpdateEnvironmentModelWithDefaults() *UpdateEnvironmentModel

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

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *UpdateEnvironmentModel) HasName() bool

HasName returns a boolean if a field has been set.

SetNameNil

func (o *UpdateEnvironmentModel) SetNameNil(b bool)

SetNameNil sets the value for Name to be an explicit nil

UnsetName

func (o *UpdateEnvironmentModel) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

GetColor

func (o *UpdateEnvironmentModel) GetColor() string

GetColor returns the Color field if non-nil, zero value otherwise.

GetColorOk

func (o *UpdateEnvironmentModel) GetColorOk() (*string, bool)

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

SetColor

func (o *UpdateEnvironmentModel) SetColor(v string)

SetColor sets Color field to given value.

HasColor

func (o *UpdateEnvironmentModel) HasColor() bool

HasColor returns a boolean if a field has been set.

SetColorNil

func (o *UpdateEnvironmentModel) SetColorNil(b bool)

SetColorNil sets the value for Color to be an explicit nil

UnsetColor

func (o *UpdateEnvironmentModel) UnsetColor()

UnsetColor ensures that no value is present for Color, not even an explicit nil

GetDescription

func (o *UpdateEnvironmentModel) GetDescription() string

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *UpdateEnvironmentModel) HasDescription() bool

HasDescription returns a boolean if a field has been set.

SetDescriptionNil

func (o *UpdateEnvironmentModel) SetDescriptionNil(b bool)

SetDescriptionNil sets the value for Description to be an explicit nil

UnsetDescription

func (o *UpdateEnvironmentModel) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

GetOrder

func (o *UpdateEnvironmentModel) GetOrder() int32

GetOrder returns the Order field if non-nil, zero value otherwise.

GetOrderOk

func (o *UpdateEnvironmentModel) GetOrderOk() (*int32, bool)

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

SetOrder

func (o *UpdateEnvironmentModel) SetOrder(v int32)

SetOrder sets Order field to given value.

HasOrder

func (o *UpdateEnvironmentModel) HasOrder() bool

HasOrder returns a boolean if a field has been set.

SetOrderNil

func (o *UpdateEnvironmentModel) SetOrderNil(b bool)

SetOrderNil sets the value for Order to be an explicit nil

UnsetOrder

func (o *UpdateEnvironmentModel) UnsetOrder()

UnsetOrder ensures that no value is present for Order, not even an explicit nil

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