Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.76 KB

File metadata and controls

108 lines (59 loc) · 2.76 KB

BillingAddress1

Properties

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

Methods

NewBillingAddress1

func NewBillingAddress1() *BillingAddress1

NewBillingAddress1 instantiates a new BillingAddress1 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

NewBillingAddress1WithDefaults

func NewBillingAddress1WithDefaults() *BillingAddress1

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

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

GetCityOk

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

SetCity sets City field to given value.

HasCity

func (o *BillingAddress1) HasCity() bool

HasCity returns a boolean if a field has been set.

GetStreet

func (o *BillingAddress1) GetStreet() string

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

GetStreetOk

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

SetStreet sets Street field to given value.

HasStreet

func (o *BillingAddress1) HasStreet() bool

HasStreet returns a boolean if a field has been set.

GetZipcode

func (o *BillingAddress1) GetZipcode() string

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

GetZipcodeOk

func (o *BillingAddress1) 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 *BillingAddress1) SetZipcode(v string)

SetZipcode sets Zipcode field to given value.

HasZipcode

func (o *BillingAddress1) HasZipcode() bool

HasZipcode returns a boolean if a field has been set.

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