Skip to content

Latest commit

 

History

History
181 lines (98 loc) · 5.3 KB

PaymentRequestShippingInformation.md

File metadata and controls

181 lines (98 loc) · 5.3 KB

PaymentRequestShippingInformation

Properties

Name Type Required Description Examples
Country string ☑️
StreetLine1 Pointer to string
StreetLine2 Pointer to string
City Pointer to string
ProvinceState Pointer to string
PostalCode Pointer to string

Methods

NewPaymentRequestShippingInformation

func NewPaymentRequestShippingInformation(country string, ) *PaymentRequestShippingInformation

NewPaymentRequestShippingInformation instantiates a new PaymentRequestShippingInformation 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

NewPaymentRequestShippingInformationWithDefaults

func NewPaymentRequestShippingInformationWithDefaults() *PaymentRequestShippingInformation

NewPaymentRequestShippingInformationWithDefaults instantiates a new PaymentRequestShippingInformation 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

GetCountry

func (o *PaymentRequestShippingInformation) GetCountry() string

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

GetCountryOk

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

SetCountry sets Country field to given value.

GetStreetLine1

func (o *PaymentRequestShippingInformation) GetStreetLine1() string

GetStreetLine1 returns the StreetLine1 field if non-nil, zero value otherwise.

GetStreetLine1Ok

func (o *PaymentRequestShippingInformation) GetStreetLine1Ok() (*string, bool)

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

SetStreetLine1

func (o *PaymentRequestShippingInformation) SetStreetLine1(v string)

SetStreetLine1 sets StreetLine1 field to given value.

HasStreetLine1

func (o *PaymentRequestShippingInformation) HasStreetLine1() bool

HasStreetLine1 returns a boolean if a field has been set.

GetStreetLine2

func (o *PaymentRequestShippingInformation) GetStreetLine2() string

GetStreetLine2 returns the StreetLine2 field if non-nil, zero value otherwise.

GetStreetLine2Ok

func (o *PaymentRequestShippingInformation) GetStreetLine2Ok() (*string, bool)

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

SetStreetLine2

func (o *PaymentRequestShippingInformation) SetStreetLine2(v string)

SetStreetLine2 sets StreetLine2 field to given value.

HasStreetLine2

func (o *PaymentRequestShippingInformation) HasStreetLine2() bool

HasStreetLine2 returns a boolean if a field has been set.

GetCity

func (o *PaymentRequestShippingInformation) GetCity() string

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

GetCityOk

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

SetCity sets City field to given value.

HasCity

func (o *PaymentRequestShippingInformation) HasCity() bool

HasCity returns a boolean if a field has been set.

GetProvinceState

func (o *PaymentRequestShippingInformation) GetProvinceState() string

GetProvinceState returns the ProvinceState field if non-nil, zero value otherwise.

GetProvinceStateOk

func (o *PaymentRequestShippingInformation) GetProvinceStateOk() (*string, bool)

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

SetProvinceState

func (o *PaymentRequestShippingInformation) SetProvinceState(v string)

SetProvinceState sets ProvinceState field to given value.

HasProvinceState

func (o *PaymentRequestShippingInformation) HasProvinceState() bool

HasProvinceState returns a boolean if a field has been set.

GetPostalCode

func (o *PaymentRequestShippingInformation) GetPostalCode() string

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

GetPostalCodeOk

func (o *PaymentRequestShippingInformation) 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 *PaymentRequestShippingInformation) SetPostalCode(v string)

SetPostalCode sets PostalCode field to given value.

HasPostalCode

func (o *PaymentRequestShippingInformation) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

[Back to README]