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] |
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
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
func (o *Receiver) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
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.
func (o *Receiver) SetName(v string)
SetName sets Name field to given value.
func (o *Receiver) HasName() bool
HasName returns a boolean if a field has been set.
func (o *Receiver) GetPhones() string
GetPhones returns the Phones field if non-nil, zero value otherwise.
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.
func (o *Receiver) SetPhones(v string)
SetPhones sets Phones field to given value.
func (o *Receiver) HasPhones() bool
HasPhones returns a boolean if a field has been set.
func (o *Receiver) GetAddress() Address
GetAddress returns the Address field if non-nil, zero value otherwise.
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.
func (o *Receiver) SetAddress(v Address)
SetAddress sets Address field to given value.
func (o *Receiver) HasAddress() bool
HasAddress returns a boolean if a field has been set.