Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.08 KB

File metadata and controls

82 lines (45 loc) · 2.08 KB

GeocodingPoint

Properties

Name Type Description Notes
Lat Pointer to float64 Latitude [optional]
Lng Pointer to float64 Longitude [optional]

Methods

NewGeocodingPoint

func NewGeocodingPoint() *GeocodingPoint

NewGeocodingPoint instantiates a new GeocodingPoint 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

NewGeocodingPointWithDefaults

func NewGeocodingPointWithDefaults() *GeocodingPoint

NewGeocodingPointWithDefaults instantiates a new GeocodingPoint 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

GetLat

func (o *GeocodingPoint) GetLat() float64

GetLat returns the Lat field if non-nil, zero value otherwise.

GetLatOk

func (o *GeocodingPoint) GetLatOk() (*float64, bool)

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

SetLat

func (o *GeocodingPoint) SetLat(v float64)

SetLat sets Lat field to given value.

HasLat

func (o *GeocodingPoint) HasLat() bool

HasLat returns a boolean if a field has been set.

GetLng

func (o *GeocodingPoint) GetLng() float64

GetLng returns the Lng field if non-nil, zero value otherwise.

GetLngOk

func (o *GeocodingPoint) GetLngOk() (*float64, bool)

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

SetLng

func (o *GeocodingPoint) SetLng(v float64)

SetLng sets Lng field to given value.

HasLng

func (o *GeocodingPoint) HasLng() bool

HasLng returns a boolean if a field has been set.

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