Name | Type | Description | Notes |
---|---|---|---|
City | string | ||
Country | Pointer to string | [optional] [default to "PL"] | |
Street | string | ||
Zipcode | string |
func NewBillingAddress(city string, street string, zipcode string, ) *BillingAddress
NewBillingAddress instantiates a new BillingAddress 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 NewBillingAddressWithDefaults() *BillingAddress
NewBillingAddressWithDefaults instantiates a new BillingAddress 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 *BillingAddress) GetCity() string
GetCity returns the City field if non-nil, zero value otherwise.
func (o *BillingAddress) 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.
func (o *BillingAddress) SetCity(v string)
SetCity sets City field to given value.
func (o *BillingAddress) GetCountry() string
GetCountry returns the Country field if non-nil, zero value otherwise.
func (o *BillingAddress) 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.
func (o *BillingAddress) SetCountry(v string)
SetCountry sets Country field to given value.
func (o *BillingAddress) HasCountry() bool
HasCountry returns a boolean if a field has been set.
func (o *BillingAddress) GetStreet() string
GetStreet returns the Street field if non-nil, zero value otherwise.
func (o *BillingAddress) 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.
func (o *BillingAddress) SetStreet(v string)
SetStreet sets Street field to given value.
func (o *BillingAddress) GetZipcode() string
GetZipcode returns the Zipcode field if non-nil, zero value otherwise.
func (o *BillingAddress) 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.
func (o *BillingAddress) SetZipcode(v string)
SetZipcode sets Zipcode field to given value.