Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.96 KB

File metadata and controls

134 lines (73 loc) · 3.96 KB

LinkedinRecommendation

Properties

Name Type Description Notes
Text string
Date NullableString
Relationship NullableString
Recommender LinkedinRecommendationRecommender

Methods

NewLinkedinRecommendation

func NewLinkedinRecommendation(text string, date NullableString, relationship NullableString, recommender LinkedinRecommendationRecommender, ) *LinkedinRecommendation

NewLinkedinRecommendation instantiates a new LinkedinRecommendation 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

NewLinkedinRecommendationWithDefaults

func NewLinkedinRecommendationWithDefaults() *LinkedinRecommendation

NewLinkedinRecommendationWithDefaults instantiates a new LinkedinRecommendation 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

GetText

func (o *LinkedinRecommendation) GetText() string

GetText returns the Text field if non-nil, zero value otherwise.

GetTextOk

func (o *LinkedinRecommendation) GetTextOk() (*string, bool)

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

SetText

func (o *LinkedinRecommendation) SetText(v string)

SetText sets Text field to given value.

GetDate

func (o *LinkedinRecommendation) GetDate() string

GetDate returns the Date field if non-nil, zero value otherwise.

GetDateOk

func (o *LinkedinRecommendation) GetDateOk() (*string, bool)

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

SetDate

func (o *LinkedinRecommendation) SetDate(v string)

SetDate sets Date field to given value.

SetDateNil

func (o *LinkedinRecommendation) SetDateNil(b bool)

SetDateNil sets the value for Date to be an explicit nil

UnsetDate

func (o *LinkedinRecommendation) UnsetDate()

UnsetDate ensures that no value is present for Date, not even an explicit nil

GetRelationship

func (o *LinkedinRecommendation) GetRelationship() string

GetRelationship returns the Relationship field if non-nil, zero value otherwise.

GetRelationshipOk

func (o *LinkedinRecommendation) GetRelationshipOk() (*string, bool)

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

SetRelationship

func (o *LinkedinRecommendation) SetRelationship(v string)

SetRelationship sets Relationship field to given value.

SetRelationshipNil

func (o *LinkedinRecommendation) SetRelationshipNil(b bool)

SetRelationshipNil sets the value for Relationship to be an explicit nil

UnsetRelationship

func (o *LinkedinRecommendation) UnsetRelationship()

UnsetRelationship ensures that no value is present for Relationship, not even an explicit nil

GetRecommender

func (o *LinkedinRecommendation) GetRecommender() LinkedinRecommendationRecommender

GetRecommender returns the Recommender field if non-nil, zero value otherwise.

GetRecommenderOk

func (o *LinkedinRecommendation) GetRecommenderOk() (*LinkedinRecommendationRecommender, bool)

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

SetRecommender

func (o *LinkedinRecommendation) SetRecommender(v LinkedinRecommendationRecommender)

SetRecommender sets Recommender field to given value.

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