Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.47 KB

V3DeliveryAddress.md

File metadata and controls

134 lines (73 loc) · 3.47 KB

V3DeliveryAddress

Properties

Name Type Description Notes
Address Pointer to string [optional]
City Pointer to string [optional]
Country Pointer to string [optional]
Postcode Pointer to string [optional]

Methods

NewV3DeliveryAddress

func NewV3DeliveryAddress() *V3DeliveryAddress

NewV3DeliveryAddress instantiates a new V3DeliveryAddress 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

NewV3DeliveryAddressWithDefaults

func NewV3DeliveryAddressWithDefaults() *V3DeliveryAddress

NewV3DeliveryAddressWithDefaults instantiates a new V3DeliveryAddress 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

GetAddress

func (o *V3DeliveryAddress) GetAddress() string

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

GetAddressOk

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

SetAddress sets Address field to given value.

HasAddress

func (o *V3DeliveryAddress) HasAddress() bool

HasAddress returns a boolean if a field has been set.

GetCity

func (o *V3DeliveryAddress) GetCity() string

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

GetCityOk

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

SetCity sets City field to given value.

HasCity

func (o *V3DeliveryAddress) HasCity() bool

HasCity returns a boolean if a field has been set.

GetCountry

func (o *V3DeliveryAddress) GetCountry() string

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

GetCountryOk

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

SetCountry sets Country field to given value.

HasCountry

func (o *V3DeliveryAddress) HasCountry() bool

HasCountry returns a boolean if a field has been set.

GetPostcode

func (o *V3DeliveryAddress) GetPostcode() string

GetPostcode returns the Postcode field if non-nil, zero value otherwise.

GetPostcodeOk

func (o *V3DeliveryAddress) GetPostcodeOk() (*string, bool)

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

SetPostcode

func (o *V3DeliveryAddress) SetPostcode(v string)

SetPostcode sets Postcode field to given value.

HasPostcode

func (o *V3DeliveryAddress) HasPostcode() bool

HasPostcode returns a boolean if a field has been set.

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