Skip to content

Latest commit

 

History

History
239 lines (128 loc) · 6.43 KB

File metadata and controls

239 lines (128 loc) · 6.43 KB

LinkedinContactInfo

Properties

Name Type Description Notes
Urn string
PublicIdentifier string
FirstName string
LastName string
Websites []string
PhoneNumbers []string
Twitter []string
Address NullableString
Wechat NullableString

Methods

NewLinkedinContactInfo

func NewLinkedinContactInfo(urn string, publicIdentifier string, firstName string, lastName string, websites []string, phoneNumbers []string, twitter []string, address NullableString, wechat NullableString, ) *LinkedinContactInfo

NewLinkedinContactInfo instantiates a new LinkedinContactInfo 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

NewLinkedinContactInfoWithDefaults

func NewLinkedinContactInfoWithDefaults() *LinkedinContactInfo

NewLinkedinContactInfoWithDefaults instantiates a new LinkedinContactInfo 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

GetUrn

func (o *LinkedinContactInfo) GetUrn() string

GetUrn returns the Urn field if non-nil, zero value otherwise.

GetUrnOk

func (o *LinkedinContactInfo) GetUrnOk() (*string, bool)

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

SetUrn

func (o *LinkedinContactInfo) SetUrn(v string)

SetUrn sets Urn field to given value.

GetPublicIdentifier

func (o *LinkedinContactInfo) GetPublicIdentifier() string

GetPublicIdentifier returns the PublicIdentifier field if non-nil, zero value otherwise.

GetPublicIdentifierOk

func (o *LinkedinContactInfo) GetPublicIdentifierOk() (*string, bool)

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

SetPublicIdentifier

func (o *LinkedinContactInfo) SetPublicIdentifier(v string)

SetPublicIdentifier sets PublicIdentifier field to given value.

GetFirstName

func (o *LinkedinContactInfo) GetFirstName() string

GetFirstName returns the FirstName field if non-nil, zero value otherwise.

GetFirstNameOk

func (o *LinkedinContactInfo) GetFirstNameOk() (*string, bool)

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

SetFirstName

func (o *LinkedinContactInfo) SetFirstName(v string)

SetFirstName sets FirstName field to given value.

GetLastName

func (o *LinkedinContactInfo) GetLastName() string

GetLastName returns the LastName field if non-nil, zero value otherwise.

GetLastNameOk

func (o *LinkedinContactInfo) GetLastNameOk() (*string, bool)

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

SetLastName

func (o *LinkedinContactInfo) SetLastName(v string)

SetLastName sets LastName field to given value.

GetWebsites

func (o *LinkedinContactInfo) GetWebsites() []string

GetWebsites returns the Websites field if non-nil, zero value otherwise.

GetWebsitesOk

func (o *LinkedinContactInfo) GetWebsitesOk() (*[]string, bool)

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

SetWebsites

func (o *LinkedinContactInfo) SetWebsites(v []string)

SetWebsites sets Websites field to given value.

GetPhoneNumbers

func (o *LinkedinContactInfo) GetPhoneNumbers() []string

GetPhoneNumbers returns the PhoneNumbers field if non-nil, zero value otherwise.

GetPhoneNumbersOk

func (o *LinkedinContactInfo) GetPhoneNumbersOk() (*[]string, bool)

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

SetPhoneNumbers

func (o *LinkedinContactInfo) SetPhoneNumbers(v []string)

SetPhoneNumbers sets PhoneNumbers field to given value.

GetTwitter

func (o *LinkedinContactInfo) GetTwitter() []string

GetTwitter returns the Twitter field if non-nil, zero value otherwise.

GetTwitterOk

func (o *LinkedinContactInfo) GetTwitterOk() (*[]string, bool)

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

SetTwitter

func (o *LinkedinContactInfo) SetTwitter(v []string)

SetTwitter sets Twitter field to given value.

GetAddress

func (o *LinkedinContactInfo) GetAddress() string

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

GetAddressOk

func (o *LinkedinContactInfo) 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 *LinkedinContactInfo) SetAddress(v string)

SetAddress sets Address field to given value.

SetAddressNil

func (o *LinkedinContactInfo) SetAddressNil(b bool)

SetAddressNil sets the value for Address to be an explicit nil

UnsetAddress

func (o *LinkedinContactInfo) UnsetAddress()

UnsetAddress ensures that no value is present for Address, not even an explicit nil

GetWechat

func (o *LinkedinContactInfo) GetWechat() string

GetWechat returns the Wechat field if non-nil, zero value otherwise.

GetWechatOk

func (o *LinkedinContactInfo) GetWechatOk() (*string, bool)

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

SetWechat

func (o *LinkedinContactInfo) SetWechat(v string)

SetWechat sets Wechat field to given value.

SetWechatNil

func (o *LinkedinContactInfo) SetWechatNil(b bool)

SetWechatNil sets the value for Wechat to be an explicit nil

UnsetWechat

func (o *LinkedinContactInfo) UnsetWechat()

UnsetWechat ensures that no value is present for Wechat, not even an explicit nil

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