Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 3.17 KB

SocialNetworkDefinition.md

File metadata and controls

108 lines (59 loc) · 3.17 KB

SocialNetworkDefinition

Properties

Name Type Description Notes
Name Pointer to string Possible values are "twitter", "linkedin". [optional]
ProfileName Pointer to string Human-readable profile name. [optional]
ProfileUrl Pointer to string Link to profile. [optional]

Methods

NewSocialNetworkDefinition

func NewSocialNetworkDefinition() *SocialNetworkDefinition

NewSocialNetworkDefinition instantiates a new SocialNetworkDefinition 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

NewSocialNetworkDefinitionWithDefaults

func NewSocialNetworkDefinitionWithDefaults() *SocialNetworkDefinition

NewSocialNetworkDefinitionWithDefaults instantiates a new SocialNetworkDefinition 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

GetName

func (o *SocialNetworkDefinition) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *SocialNetworkDefinition) HasName() bool

HasName returns a boolean if a field has been set.

GetProfileName

func (o *SocialNetworkDefinition) GetProfileName() string

GetProfileName returns the ProfileName field if non-nil, zero value otherwise.

GetProfileNameOk

func (o *SocialNetworkDefinition) GetProfileNameOk() (*string, bool)

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

SetProfileName

func (o *SocialNetworkDefinition) SetProfileName(v string)

SetProfileName sets ProfileName field to given value.

HasProfileName

func (o *SocialNetworkDefinition) HasProfileName() bool

HasProfileName returns a boolean if a field has been set.

GetProfileUrl

func (o *SocialNetworkDefinition) GetProfileUrl() string

GetProfileUrl returns the ProfileUrl field if non-nil, zero value otherwise.

GetProfileUrlOk

func (o *SocialNetworkDefinition) GetProfileUrlOk() (*string, bool)

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

SetProfileUrl

func (o *SocialNetworkDefinition) SetProfileUrl(v string)

SetProfileUrl sets ProfileUrl field to given value.

HasProfileUrl

func (o *SocialNetworkDefinition) HasProfileUrl() bool

HasProfileUrl returns a boolean if a field has been set.

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