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] |
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
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
func (o *AddedPostPayment) GetPaymentMethodId() int32
GetPaymentMethodId returns the PaymentMethodId field if non-nil, zero value otherwise.
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.
func (o *AddedPostPayment) SetPaymentMethodId(v int32)
SetPaymentMethodId sets PaymentMethodId field to given value.
func (o *AddedPostPayment) HasPaymentMethodId() bool
HasPaymentMethodId returns a boolean if a field has been set.
func (o *AddedPostPayment) GetUsd() string
GetUsd returns the Usd field if non-nil, zero value otherwise.
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.
func (o *AddedPostPayment) SetUsd(v string)
SetUsd sets Usd field to given value.
func (o *AddedPostPayment) HasUsd() bool
HasUsd returns a boolean if a field has been set.