Skip to content

Latest commit

 

History

History
114 lines (61 loc) · 3.19 KB

RegionMetadataInfo.md

File metadata and controls

114 lines (61 loc) · 3.19 KB

RegionMetadataInfo

Properties

Name Type Description Notes
AvailabilityZones []string
Latitude float64
Longitude float64
Name string

Methods

NewRegionMetadataInfo

func NewRegionMetadataInfo(availabilityZones []string, latitude float64, longitude float64, name string, ) *RegionMetadataInfo

NewRegionMetadataInfo instantiates a new RegionMetadataInfo 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

NewRegionMetadataInfoWithDefaults

func NewRegionMetadataInfoWithDefaults() *RegionMetadataInfo

NewRegionMetadataInfoWithDefaults instantiates a new RegionMetadataInfo 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

GetAvailabilityZones

func (o *RegionMetadataInfo) GetAvailabilityZones() []string

GetAvailabilityZones returns the AvailabilityZones field if non-nil, zero value otherwise.

GetAvailabilityZonesOk

func (o *RegionMetadataInfo) GetAvailabilityZonesOk() (*[]string, bool)

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

SetAvailabilityZones

func (o *RegionMetadataInfo) SetAvailabilityZones(v []string)

SetAvailabilityZones sets AvailabilityZones field to given value.

GetLatitude

func (o *RegionMetadataInfo) GetLatitude() float64

GetLatitude returns the Latitude field if non-nil, zero value otherwise.

GetLatitudeOk

func (o *RegionMetadataInfo) GetLatitudeOk() (*float64, bool)

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

SetLatitude

func (o *RegionMetadataInfo) SetLatitude(v float64)

SetLatitude sets Latitude field to given value.

GetLongitude

func (o *RegionMetadataInfo) GetLongitude() float64

GetLongitude returns the Longitude field if non-nil, zero value otherwise.

GetLongitudeOk

func (o *RegionMetadataInfo) GetLongitudeOk() (*float64, bool)

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

SetLongitude

func (o *RegionMetadataInfo) SetLongitude(v float64)

SetLongitude sets Longitude field to given value.

GetName

func (o *RegionMetadataInfo) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

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