Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.54 KB

CustomerFullAddress.md

File metadata and controls

134 lines (73 loc) · 3.54 KB

CustomerFullAddress

Properties

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

Methods

NewCustomerFullAddress

func NewCustomerFullAddress() *CustomerFullAddress

NewCustomerFullAddress instantiates a new CustomerFullAddress 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

NewCustomerFullAddressWithDefaults

func NewCustomerFullAddressWithDefaults() *CustomerFullAddress

NewCustomerFullAddressWithDefaults instantiates a new CustomerFullAddress 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 *CustomerFullAddress) GetCity() string

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

GetCityOk

func (o *CustomerFullAddress) 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 *CustomerFullAddress) SetCity(v string)

SetCity sets City field to given value.

HasCity

func (o *CustomerFullAddress) HasCity() bool

HasCity returns a boolean if a field has been set.

GetCountry

func (o *CustomerFullAddress) GetCountry() string

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

GetCountryOk

func (o *CustomerFullAddress) 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 *CustomerFullAddress) SetCountry(v string)

SetCountry sets Country field to given value.

HasCountry

func (o *CustomerFullAddress) HasCountry() bool

HasCountry returns a boolean if a field has been set.

GetPostalCode

func (o *CustomerFullAddress) GetPostalCode() string

GetPostalCode returns the PostalCode field if non-nil, zero value otherwise.

GetPostalCodeOk

func (o *CustomerFullAddress) GetPostalCodeOk() (*string, bool)

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

SetPostalCode

func (o *CustomerFullAddress) SetPostalCode(v string)

SetPostalCode sets PostalCode field to given value.

HasPostalCode

func (o *CustomerFullAddress) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

GetStreet

func (o *CustomerFullAddress) GetStreet() string

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

GetStreetOk

func (o *CustomerFullAddress) 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 *CustomerFullAddress) SetStreet(v string)

SetStreet sets Street field to given value.

HasStreet

func (o *CustomerFullAddress) HasStreet() bool

HasStreet returns a boolean if a field has been set.

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