Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.68 KB

Receiver.md

File metadata and controls

108 lines (59 loc) · 2.68 KB

Receiver

Properties

Name Type Description Notes
Name Pointer to string The name of the receiver. [optional]
Phones Pointer to string The receiver's phone number. [optional]
Address Pointer to Address [optional]

Methods

NewReceiver

func NewReceiver() *Receiver

NewReceiver instantiates a new Receiver 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

NewReceiverWithDefaults

func NewReceiverWithDefaults() *Receiver

NewReceiverWithDefaults instantiates a new Receiver 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 *Receiver) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *Receiver) HasName() bool

HasName returns a boolean if a field has been set.

GetPhones

func (o *Receiver) GetPhones() string

GetPhones returns the Phones field if non-nil, zero value otherwise.

GetPhonesOk

func (o *Receiver) GetPhonesOk() (*string, bool)

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

SetPhones

func (o *Receiver) SetPhones(v string)

SetPhones sets Phones field to given value.

HasPhones

func (o *Receiver) HasPhones() bool

HasPhones returns a boolean if a field has been set.

GetAddress

func (o *Receiver) GetAddress() Address

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

GetAddressOk

func (o *Receiver) GetAddressOk() (*Address, 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 *Receiver) SetAddress(v Address)

SetAddress sets Address field to given value.

HasAddress

func (o *Receiver) HasAddress() bool

HasAddress returns a boolean if a field has been set.

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