Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 4.68 KB

File metadata and controls

186 lines (101 loc) · 4.68 KB

RegionFields

Properties

Name Type Description Notes
Country Pointer to string [optional]
Description Pointer to string [optional]
Features Pointer to map[string]interface{} [optional]
GreenStatus Pointer to string Green status [optional]
Id Pointer to int32 [optional]
Name Pointer to string [optional]

Methods

NewRegionFields

func NewRegionFields() *RegionFields

NewRegionFields instantiates a new RegionFields 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

NewRegionFieldsWithDefaults

func NewRegionFieldsWithDefaults() *RegionFields

NewRegionFieldsWithDefaults instantiates a new RegionFields 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

GetCountry

func (o *RegionFields) GetCountry() string

GetCountry returns the Country field if non-nil, zero value otherwise.

GetCountryOk

func (o *RegionFields) GetCountryOk() (*string, bool)

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

SetCountry

func (o *RegionFields) SetCountry(v string)

SetCountry sets Country field to given value.

HasCountry

func (o *RegionFields) HasCountry() bool

HasCountry returns a boolean if a field has been set.

GetDescription

func (o *RegionFields) GetDescription() string

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

GetDescriptionOk

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

SetDescription sets Description field to given value.

HasDescription

func (o *RegionFields) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetFeatures

func (o *RegionFields) GetFeatures() map[string]interface{}

GetFeatures returns the Features field if non-nil, zero value otherwise.

GetFeaturesOk

func (o *RegionFields) GetFeaturesOk() (*map[string]interface{}, bool)

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

SetFeatures

func (o *RegionFields) SetFeatures(v map[string]interface{})

SetFeatures sets Features field to given value.

HasFeatures

func (o *RegionFields) HasFeatures() bool

HasFeatures returns a boolean if a field has been set.

GetGreenStatus

func (o *RegionFields) GetGreenStatus() string

GetGreenStatus returns the GreenStatus field if non-nil, zero value otherwise.

GetGreenStatusOk

func (o *RegionFields) GetGreenStatusOk() (*string, bool)

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

SetGreenStatus

func (o *RegionFields) SetGreenStatus(v string)

SetGreenStatus sets GreenStatus field to given value.

HasGreenStatus

func (o *RegionFields) HasGreenStatus() bool

HasGreenStatus returns a boolean if a field has been set.

GetId

func (o *RegionFields) GetId() int32

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *RegionFields) GetIdOk() (*int32, bool)

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

SetId

func (o *RegionFields) SetId(v int32)

SetId sets Id field to given value.

HasId

func (o *RegionFields) HasId() bool

HasId returns a boolean if a field has been set.

GetName

func (o *RegionFields) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *RegionFields) HasName() bool

HasName returns a boolean if a field has been set.

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