| Name | Type | Description | Notes |
|---|---|---|---|
| Amount | string | A number representing the total amount of the invoice. | |
| Currency | Pointer to string | The currency used for the payment. | [optional] |
| Date | Pointer to string | Date on which the payment was created. | [optional] |
| PaymentMethodId | Pointer to int32 | Identifier of the payment method. | [optional] |
func NewCreateInvoicePaymentByInvoiceIdRequest(amount string, ) *CreateInvoicePaymentByInvoiceIdRequest
NewCreateInvoicePaymentByInvoiceIdRequest instantiates a new CreateInvoicePaymentByInvoiceIdRequest 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 NewCreateInvoicePaymentByInvoiceIdRequestWithDefaults() *CreateInvoicePaymentByInvoiceIdRequest
NewCreateInvoicePaymentByInvoiceIdRequestWithDefaults instantiates a new CreateInvoicePaymentByInvoiceIdRequest 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 *CreateInvoicePaymentByInvoiceIdRequest) GetAmount() string
GetAmount returns the Amount field if non-nil, zero value otherwise.
func (o *CreateInvoicePaymentByInvoiceIdRequest) GetAmountOk() (*string, bool)
GetAmountOk returns a tuple with the Amount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateInvoicePaymentByInvoiceIdRequest) SetAmount(v string)
SetAmount sets Amount field to given value.
func (o *CreateInvoicePaymentByInvoiceIdRequest) GetCurrency() string
GetCurrency returns the Currency field if non-nil, zero value otherwise.
func (o *CreateInvoicePaymentByInvoiceIdRequest) GetCurrencyOk() (*string, bool)
GetCurrencyOk returns a tuple with the Currency field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateInvoicePaymentByInvoiceIdRequest) SetCurrency(v string)
SetCurrency sets Currency field to given value.
func (o *CreateInvoicePaymentByInvoiceIdRequest) HasCurrency() bool
HasCurrency returns a boolean if a field has been set.
func (o *CreateInvoicePaymentByInvoiceIdRequest) GetDate() string
GetDate returns the Date field if non-nil, zero value otherwise.
func (o *CreateInvoicePaymentByInvoiceIdRequest) GetDateOk() (*string, bool)
GetDateOk returns a tuple with the Date field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateInvoicePaymentByInvoiceIdRequest) SetDate(v string)
SetDate sets Date field to given value.
func (o *CreateInvoicePaymentByInvoiceIdRequest) HasDate() bool
HasDate returns a boolean if a field has been set.
func (o *CreateInvoicePaymentByInvoiceIdRequest) GetPaymentMethodId() int32
GetPaymentMethodId returns the PaymentMethodId field if non-nil, zero value otherwise.
func (o *CreateInvoicePaymentByInvoiceIdRequest) 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 *CreateInvoicePaymentByInvoiceIdRequest) SetPaymentMethodId(v int32)
SetPaymentMethodId sets PaymentMethodId field to given value.
func (o *CreateInvoicePaymentByInvoiceIdRequest) HasPaymentMethodId() bool
HasPaymentMethodId returns a boolean if a field has been set.