Skip to content

Latest commit

 

History

History
239 lines (128 loc) · 5.87 KB

File metadata and controls

239 lines (128 loc) · 5.87 KB

InstagramLocation

Properties

Name Type Description Notes
Id string
Name string
Category string
Lat NullableFloat32
Lng NullableFloat32
City string
Address string
Phone string
MediaCount float32

Methods

NewInstagramLocation

func NewInstagramLocation(id string, name string, category string, lat NullableFloat32, lng NullableFloat32, city string, address string, phone string, mediaCount float32, ) *InstagramLocation

NewInstagramLocation instantiates a new InstagramLocation 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

NewInstagramLocationWithDefaults

func NewInstagramLocationWithDefaults() *InstagramLocation

NewInstagramLocationWithDefaults instantiates a new InstagramLocation 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 *InstagramLocation) GetId() string

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

GetIdOk

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

SetId sets Id field to given value.

GetName

func (o *InstagramLocation) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetCategory

func (o *InstagramLocation) GetCategory() string

GetCategory returns the Category field if non-nil, zero value otherwise.

GetCategoryOk

func (o *InstagramLocation) GetCategoryOk() (*string, bool)

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

SetCategory

func (o *InstagramLocation) SetCategory(v string)

SetCategory sets Category field to given value.

GetLat

func (o *InstagramLocation) GetLat() float32

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

GetLatOk

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

SetLat sets Lat field to given value.

SetLatNil

func (o *InstagramLocation) SetLatNil(b bool)

SetLatNil sets the value for Lat to be an explicit nil

UnsetLat

func (o *InstagramLocation) UnsetLat()

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

GetLng

func (o *InstagramLocation) GetLng() float32

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

GetLngOk

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

SetLng sets Lng field to given value.

SetLngNil

func (o *InstagramLocation) SetLngNil(b bool)

SetLngNil sets the value for Lng to be an explicit nil

UnsetLng

func (o *InstagramLocation) UnsetLng()

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

GetCity

func (o *InstagramLocation) GetCity() string

GetCity returns the City field if non-nil, zero value otherwise.

GetCityOk

func (o *InstagramLocation) GetCityOk() (*string, bool)

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

SetCity

func (o *InstagramLocation) SetCity(v string)

SetCity sets City field to given value.

GetAddress

func (o *InstagramLocation) GetAddress() string

GetAddress returns the Address field if non-nil, zero value otherwise.

GetAddressOk

func (o *InstagramLocation) GetAddressOk() (*string, bool)

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

SetAddress

func (o *InstagramLocation) SetAddress(v string)

SetAddress sets Address field to given value.

GetPhone

func (o *InstagramLocation) GetPhone() string

GetPhone returns the Phone field if non-nil, zero value otherwise.

GetPhoneOk

func (o *InstagramLocation) GetPhoneOk() (*string, bool)

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

SetPhone

func (o *InstagramLocation) SetPhone(v string)

SetPhone sets Phone field to given value.

GetMediaCount

func (o *InstagramLocation) GetMediaCount() float32

GetMediaCount returns the MediaCount field if non-nil, zero value otherwise.

GetMediaCountOk

func (o *InstagramLocation) GetMediaCountOk() (*float32, bool)

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

SetMediaCount

func (o *InstagramLocation) SetMediaCount(v float32)

SetMediaCount sets MediaCount field to given value.

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