Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 4.03 KB

MemberDataRep.md

File metadata and controls

160 lines (87 loc) · 4.03 KB

MemberDataRep

Properties

Name Type Description Notes
Links Pointer to map[string]Link [optional]
Id Pointer to string The member ID [optional]
Email Pointer to string The member email [optional]
FirstName Pointer to string The member first name [optional]
LastName Pointer to string The member last name [optional]

Methods

NewMemberDataRep

func NewMemberDataRep() *MemberDataRep

NewMemberDataRep instantiates a new MemberDataRep 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

NewMemberDataRepWithDefaults

func NewMemberDataRepWithDefaults() *MemberDataRep

NewMemberDataRepWithDefaults instantiates a new MemberDataRep 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

GetLinks

func (o *MemberDataRep) GetLinks() map[string]Link

GetLinks returns the Links field if non-nil, zero value otherwise.

GetLinksOk

func (o *MemberDataRep) GetLinksOk() (*map[string]Link, bool)

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

SetLinks

func (o *MemberDataRep) SetLinks(v map[string]Link)

SetLinks sets Links field to given value.

HasLinks

func (o *MemberDataRep) HasLinks() bool

HasLinks returns a boolean if a field has been set.

GetId

func (o *MemberDataRep) GetId() string

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

GetIdOk

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

SetId sets Id field to given value.

HasId

func (o *MemberDataRep) HasId() bool

HasId returns a boolean if a field has been set.

GetEmail

func (o *MemberDataRep) GetEmail() string

GetEmail returns the Email field if non-nil, zero value otherwise.

GetEmailOk

func (o *MemberDataRep) GetEmailOk() (*string, bool)

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

SetEmail

func (o *MemberDataRep) SetEmail(v string)

SetEmail sets Email field to given value.

HasEmail

func (o *MemberDataRep) HasEmail() bool

HasEmail returns a boolean if a field has been set.

GetFirstName

func (o *MemberDataRep) GetFirstName() string

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

GetFirstNameOk

func (o *MemberDataRep) 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 *MemberDataRep) SetFirstName(v string)

SetFirstName sets FirstName field to given value.

HasFirstName

func (o *MemberDataRep) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

GetLastName

func (o *MemberDataRep) GetLastName() string

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

GetLastNameOk

func (o *MemberDataRep) 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 *MemberDataRep) SetLastName(v string)

SetLastName sets LastName field to given value.

HasLastName

func (o *MemberDataRep) HasLastName() bool

HasLastName returns a boolean if a field has been set.

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