Skip to content

Latest commit

 

History

History
119 lines (64 loc) · 3.13 KB

InvoiceBuyerAddress.md

File metadata and controls

119 lines (64 loc) · 3.13 KB

InvoiceBuyerAddress

Properties

Name Type Description Notes
City string
Country string
Street string
Zipcode Pointer to string [optional]

Methods

NewInvoiceBuyerAddress

func NewInvoiceBuyerAddress(city string, country string, street string, ) *InvoiceBuyerAddress

NewInvoiceBuyerAddress instantiates a new InvoiceBuyerAddress 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

NewInvoiceBuyerAddressWithDefaults

func NewInvoiceBuyerAddressWithDefaults() *InvoiceBuyerAddress

NewInvoiceBuyerAddressWithDefaults instantiates a new InvoiceBuyerAddress 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

GetCity

func (o *InvoiceBuyerAddress) GetCity() string

GetCity returns the City field if non-nil, zero value otherwise.

GetCityOk

func (o *InvoiceBuyerAddress) GetCityOk() (*string, bool)

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

SetCity

func (o *InvoiceBuyerAddress) SetCity(v string)

SetCity sets City field to given value.

GetCountry

func (o *InvoiceBuyerAddress) GetCountry() string

GetCountry returns the Country field if non-nil, zero value otherwise.

GetCountryOk

func (o *InvoiceBuyerAddress) GetCountryOk() (*string, bool)

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

SetCountry

func (o *InvoiceBuyerAddress) SetCountry(v string)

SetCountry sets Country field to given value.

GetStreet

func (o *InvoiceBuyerAddress) GetStreet() string

GetStreet returns the Street field if non-nil, zero value otherwise.

GetStreetOk

func (o *InvoiceBuyerAddress) GetStreetOk() (*string, bool)

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

SetStreet

func (o *InvoiceBuyerAddress) SetStreet(v string)

SetStreet sets Street field to given value.

GetZipcode

func (o *InvoiceBuyerAddress) GetZipcode() string

GetZipcode returns the Zipcode field if non-nil, zero value otherwise.

GetZipcodeOk

func (o *InvoiceBuyerAddress) GetZipcodeOk() (*string, bool)

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

SetZipcode

func (o *InvoiceBuyerAddress) SetZipcode(v string)

SetZipcode sets Zipcode field to given value.

HasZipcode

func (o *InvoiceBuyerAddress) HasZipcode() bool

HasZipcode returns a boolean if a field has been set.

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