Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.71 KB

AddedPostPayment.md

File metadata and controls

82 lines (45 loc) · 2.71 KB

AddedPostPayment

Properties

Name Type Description Notes
PaymentMethodId Pointer to int32 The ID of the Payment Method to apply to the Payment. [optional]
Usd Pointer to string The amount in US Dollars of the Payment. - Can begin with or without `$`. - Commas (`,`) are not accepted. - Must end with a decimal expression, such as `.00` or `.99`. - Minimum: `$5.00` or the Account balance, whichever is lower. - Maximum: `$2000.00` or the Account balance up to `$50000.00`, whichever is greater. [optional]

Methods

NewAddedPostPayment

func NewAddedPostPayment() *AddedPostPayment

NewAddedPostPayment instantiates a new AddedPostPayment 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

NewAddedPostPaymentWithDefaults

func NewAddedPostPaymentWithDefaults() *AddedPostPayment

NewAddedPostPaymentWithDefaults instantiates a new AddedPostPayment 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

GetPaymentMethodId

func (o *AddedPostPayment) GetPaymentMethodId() int32

GetPaymentMethodId returns the PaymentMethodId field if non-nil, zero value otherwise.

GetPaymentMethodIdOk

func (o *AddedPostPayment) GetPaymentMethodIdOk() (*int32, bool)

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

SetPaymentMethodId

func (o *AddedPostPayment) SetPaymentMethodId(v int32)

SetPaymentMethodId sets PaymentMethodId field to given value.

HasPaymentMethodId

func (o *AddedPostPayment) HasPaymentMethodId() bool

HasPaymentMethodId returns a boolean if a field has been set.

GetUsd

func (o *AddedPostPayment) GetUsd() string

GetUsd returns the Usd field if non-nil, zero value otherwise.

GetUsdOk

func (o *AddedPostPayment) GetUsdOk() (*string, bool)

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

SetUsd

func (o *AddedPostPayment) SetUsd(v string)

SetUsd sets Usd field to given value.

HasUsd

func (o *AddedPostPayment) HasUsd() bool

HasUsd returns a boolean if a field has been set.

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