Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.28 KB

BeneficiaryPerson.md

File metadata and controls

82 lines (45 loc) · 2.28 KB

BeneficiaryPerson

Properties

Name Type Description Notes
FirstName Pointer to string [optional]
LastName Pointer to string [optional]

Methods

NewBeneficiaryPerson

func NewBeneficiaryPerson() *BeneficiaryPerson

NewBeneficiaryPerson instantiates a new BeneficiaryPerson 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

NewBeneficiaryPersonWithDefaults

func NewBeneficiaryPersonWithDefaults() *BeneficiaryPerson

NewBeneficiaryPersonWithDefaults instantiates a new BeneficiaryPerson 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

GetFirstName

func (o *BeneficiaryPerson) GetFirstName() string

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

GetFirstNameOk

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

SetFirstName sets FirstName field to given value.

HasFirstName

func (o *BeneficiaryPerson) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

GetLastName

func (o *BeneficiaryPerson) GetLastName() string

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

GetLastNameOk

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

SetLastName sets LastName field to given value.

HasLastName

func (o *BeneficiaryPerson) HasLastName() bool

HasLastName returns a boolean if a field has been set.

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