Skip to content

Latest commit

 

History

History
154 lines (85 loc) · 4.24 KB

File metadata and controls

154 lines (85 loc) · 4.24 KB

LinkedinLocation

Properties

Name Type Description Notes
Country NullableString
CountryCode NullableString
City NullableString
PostalCode NullableString

Methods

NewLinkedinLocation

func NewLinkedinLocation(country NullableString, countryCode NullableString, city NullableString, postalCode NullableString, ) *LinkedinLocation

NewLinkedinLocation instantiates a new LinkedinLocation 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

NewLinkedinLocationWithDefaults

func NewLinkedinLocationWithDefaults() *LinkedinLocation

NewLinkedinLocationWithDefaults instantiates a new LinkedinLocation 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 *LinkedinLocation) GetCountry() string

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

GetCountryOk

func (o *LinkedinLocation) 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 *LinkedinLocation) SetCountry(v string)

SetCountry sets Country field to given value.

SetCountryNil

func (o *LinkedinLocation) SetCountryNil(b bool)

SetCountryNil sets the value for Country to be an explicit nil

UnsetCountry

func (o *LinkedinLocation) UnsetCountry()

UnsetCountry ensures that no value is present for Country, not even an explicit nil

GetCountryCode

func (o *LinkedinLocation) GetCountryCode() string

GetCountryCode returns the CountryCode field if non-nil, zero value otherwise.

GetCountryCodeOk

func (o *LinkedinLocation) GetCountryCodeOk() (*string, bool)

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

SetCountryCode

func (o *LinkedinLocation) SetCountryCode(v string)

SetCountryCode sets CountryCode field to given value.

SetCountryCodeNil

func (o *LinkedinLocation) SetCountryCodeNil(b bool)

SetCountryCodeNil sets the value for CountryCode to be an explicit nil

UnsetCountryCode

func (o *LinkedinLocation) UnsetCountryCode()

UnsetCountryCode ensures that no value is present for CountryCode, not even an explicit nil

GetCity

func (o *LinkedinLocation) GetCity() string

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

GetCityOk

func (o *LinkedinLocation) 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 *LinkedinLocation) SetCity(v string)

SetCity sets City field to given value.

SetCityNil

func (o *LinkedinLocation) SetCityNil(b bool)

SetCityNil sets the value for City to be an explicit nil

UnsetCity

func (o *LinkedinLocation) UnsetCity()

UnsetCity ensures that no value is present for City, not even an explicit nil

GetPostalCode

func (o *LinkedinLocation) GetPostalCode() string

GetPostalCode returns the PostalCode field if non-nil, zero value otherwise.

GetPostalCodeOk

func (o *LinkedinLocation) GetPostalCodeOk() (*string, bool)

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

SetPostalCode

func (o *LinkedinLocation) SetPostalCode(v string)

SetPostalCode sets PostalCode field to given value.

SetPostalCodeNil

func (o *LinkedinLocation) SetPostalCodeNil(b bool)

SetPostalCodeNil sets the value for PostalCode to be an explicit nil

UnsetPostalCode

func (o *LinkedinLocation) UnsetPostalCode()

UnsetPostalCode ensures that no value is present for PostalCode, not even an explicit nil

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