Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.14 KB

File metadata and controls

82 lines (45 loc) · 2.14 KB

Paypal

Properties

Name Type Description Notes
Email Pointer to string The email address associated with your PayPal account. [optional] [readonly]
PaypalId Pointer to string PayPal Merchant ID associated with your PayPal account. [optional] [readonly]

Methods

NewPaypal

func NewPaypal() *Paypal

NewPaypal instantiates a new Paypal 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

NewPaypalWithDefaults

func NewPaypalWithDefaults() *Paypal

NewPaypalWithDefaults instantiates a new Paypal 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

GetEmail

func (o *Paypal) GetEmail() string

GetEmail returns the Email field if non-nil, zero value otherwise.

GetEmailOk

func (o *Paypal) 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.

SetEmail

func (o *Paypal) SetEmail(v string)

SetEmail sets Email field to given value.

HasEmail

func (o *Paypal) HasEmail() bool

HasEmail returns a boolean if a field has been set.

GetPaypalId

func (o *Paypal) GetPaypalId() string

GetPaypalId returns the PaypalId field if non-nil, zero value otherwise.

GetPaypalIdOk

func (o *Paypal) GetPaypalIdOk() (*string, bool)

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

SetPaypalId

func (o *Paypal) SetPaypalId(v string)

SetPaypalId sets PaypalId field to given value.

HasPaypalId

func (o *Paypal) HasPaypalId() bool

HasPaypalId returns a boolean if a field has been set.

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