| Name | Type | Description | Notes |
|---|---|---|---|
| FirstName | string | ||
| LastName | string | ||
| string | email used for billing, and to receive all invoices by email | ||
| Address | string | ||
| City | string | ||
| Zip | string | ||
| State | Pointer to string | only for US | [optional] |
| CountryCode | string | ISO code of the country | |
| Company | Pointer to string | name of the company to bill | [optional] |
| VatNumber | Pointer to string | [optional] |
func NewBillingInfoRequest(firstName string, lastName string, email string, address string, city string, zip string, countryCode string, ) *BillingInfoRequest
NewBillingInfoRequest instantiates a new BillingInfoRequest 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 NewBillingInfoRequestWithDefaults() *BillingInfoRequest
NewBillingInfoRequestWithDefaults instantiates a new BillingInfoRequest 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 *BillingInfoRequest) GetFirstName() string
GetFirstName returns the FirstName field if non-nil, zero value otherwise.
func (o *BillingInfoRequest) GetFirstNameOk() (*string, bool)
GetFirstNameOk returns a tuple with the FirstName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BillingInfoRequest) SetFirstName(v string)
SetFirstName sets FirstName field to given value.
func (o *BillingInfoRequest) GetLastName() string
GetLastName returns the LastName field if non-nil, zero value otherwise.
func (o *BillingInfoRequest) GetLastNameOk() (*string, bool)
GetLastNameOk returns a tuple with the LastName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BillingInfoRequest) SetLastName(v string)
SetLastName sets LastName field to given value.
func (o *BillingInfoRequest) GetEmail() string
GetEmail returns the Email field if non-nil, zero value otherwise.
func (o *BillingInfoRequest) GetEmailOk() (*string, bool)
GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BillingInfoRequest) SetEmail(v string)
SetEmail sets Email field to given value.
func (o *BillingInfoRequest) GetAddress() string
GetAddress returns the Address field if non-nil, zero value otherwise.
func (o *BillingInfoRequest) 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.
func (o *BillingInfoRequest) SetAddress(v string)
SetAddress sets Address field to given value.
func (o *BillingInfoRequest) GetCity() string
GetCity returns the City field if non-nil, zero value otherwise.
func (o *BillingInfoRequest) 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 *BillingInfoRequest) SetCity(v string)
SetCity sets City field to given value.
func (o *BillingInfoRequest) GetZip() string
GetZip returns the Zip field if non-nil, zero value otherwise.
func (o *BillingInfoRequest) GetZipOk() (*string, bool)
GetZipOk returns a tuple with the Zip field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BillingInfoRequest) SetZip(v string)
SetZip sets Zip field to given value.
func (o *BillingInfoRequest) GetState() string
GetState returns the State field if non-nil, zero value otherwise.
func (o *BillingInfoRequest) GetStateOk() (*string, bool)
GetStateOk returns a tuple with the State field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BillingInfoRequest) SetState(v string)
SetState sets State field to given value.
func (o *BillingInfoRequest) HasState() bool
HasState returns a boolean if a field has been set.
func (o *BillingInfoRequest) GetCountryCode() string
GetCountryCode returns the CountryCode field if non-nil, zero value otherwise.
func (o *BillingInfoRequest) GetCountryCodeOk() (*string, bool)
GetCountryCodeOk returns a tuple with the CountryCode field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BillingInfoRequest) SetCountryCode(v string)
SetCountryCode sets CountryCode field to given value.
func (o *BillingInfoRequest) GetCompany() string
GetCompany returns the Company field if non-nil, zero value otherwise.
func (o *BillingInfoRequest) GetCompanyOk() (*string, bool)
GetCompanyOk returns a tuple with the Company field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BillingInfoRequest) SetCompany(v string)
SetCompany sets Company field to given value.
func (o *BillingInfoRequest) HasCompany() bool
HasCompany returns a boolean if a field has been set.
func (o *BillingInfoRequest) GetVatNumber() string
GetVatNumber returns the VatNumber field if non-nil, zero value otherwise.
func (o *BillingInfoRequest) GetVatNumberOk() (*string, bool)
GetVatNumberOk returns a tuple with the VatNumber field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BillingInfoRequest) SetVatNumber(v string)
SetVatNumber sets VatNumber field to given value.
func (o *BillingInfoRequest) HasVatNumber() bool
HasVatNumber returns a boolean if a field has been set.