Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.43 KB

File metadata and controls

134 lines (73 loc) · 3.43 KB

InstagramLocationLite

Properties

Name Type Description Notes
Id string
Name string
Lat NullableFloat32
Lng NullableFloat32

Methods

NewInstagramLocationLite

func NewInstagramLocationLite(id string, name string, lat NullableFloat32, lng NullableFloat32, ) *InstagramLocationLite

NewInstagramLocationLite instantiates a new InstagramLocationLite 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

NewInstagramLocationLiteWithDefaults

func NewInstagramLocationLiteWithDefaults() *InstagramLocationLite

NewInstagramLocationLiteWithDefaults instantiates a new InstagramLocationLite 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

GetId

func (o *InstagramLocationLite) GetId() string

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

GetIdOk

func (o *InstagramLocationLite) GetIdOk() (*string, 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 *InstagramLocationLite) SetId(v string)

SetId sets Id field to given value.

GetName

func (o *InstagramLocationLite) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetLat

func (o *InstagramLocationLite) GetLat() float32

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

GetLatOk

func (o *InstagramLocationLite) GetLatOk() (*float32, 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 *InstagramLocationLite) SetLat(v float32)

SetLat sets Lat field to given value.

SetLatNil

func (o *InstagramLocationLite) SetLatNil(b bool)

SetLatNil sets the value for Lat to be an explicit nil

UnsetLat

func (o *InstagramLocationLite) UnsetLat()

UnsetLat ensures that no value is present for Lat, not even an explicit nil

GetLng

func (o *InstagramLocationLite) GetLng() float32

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

GetLngOk

func (o *InstagramLocationLite) GetLngOk() (*float32, 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 *InstagramLocationLite) SetLng(v float32)

SetLng sets Lng field to given value.

SetLngNil

func (o *InstagramLocationLite) SetLngNil(b bool)

SetLngNil sets the value for Lng to be an explicit nil

UnsetLng

func (o *InstagramLocationLite) UnsetLng()

UnsetLng ensures that no value is present for Lng, not even an explicit nil

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