| Name | Type | Description | Notes |
|---|---|---|---|
| VendorId | string | ||
| PaymentMethod | string | ||
| Amount | float32 | ||
| BankDetail | Pointer to BankDetailDto | [optional] | |
| Data | PaymentRequestDtoData |
func NewPaymentRequestDto(vendorId string, paymentMethod string, amount float32, data PaymentRequestDtoData, ) *PaymentRequestDto
NewPaymentRequestDto instantiates a new PaymentRequestDto 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 NewPaymentRequestDtoWithDefaults() *PaymentRequestDto
NewPaymentRequestDtoWithDefaults instantiates a new PaymentRequestDto 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 *PaymentRequestDto) GetVendorId() string
GetVendorId returns the VendorId field if non-nil, zero value otherwise.
func (o *PaymentRequestDto) GetVendorIdOk() (*string, bool)
GetVendorIdOk returns a tuple with the VendorId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PaymentRequestDto) SetVendorId(v string)
SetVendorId sets VendorId field to given value.
func (o *PaymentRequestDto) GetPaymentMethod() string
GetPaymentMethod returns the PaymentMethod field if non-nil, zero value otherwise.
func (o *PaymentRequestDto) GetPaymentMethodOk() (*string, bool)
GetPaymentMethodOk returns a tuple with the PaymentMethod field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PaymentRequestDto) SetPaymentMethod(v string)
SetPaymentMethod sets PaymentMethod field to given value.
func (o *PaymentRequestDto) GetAmount() float32
GetAmount returns the Amount field if non-nil, zero value otherwise.
func (o *PaymentRequestDto) GetAmountOk() (*float32, 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 *PaymentRequestDto) SetAmount(v float32)
SetAmount sets Amount field to given value.
func (o *PaymentRequestDto) GetBankDetail() BankDetailDto
GetBankDetail returns the BankDetail field if non-nil, zero value otherwise.
func (o *PaymentRequestDto) GetBankDetailOk() (*BankDetailDto, bool)
GetBankDetailOk returns a tuple with the BankDetail field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PaymentRequestDto) SetBankDetail(v BankDetailDto)
SetBankDetail sets BankDetail field to given value.
func (o *PaymentRequestDto) HasBankDetail() bool
HasBankDetail returns a boolean if a field has been set.
func (o *PaymentRequestDto) GetData() PaymentRequestDtoData
GetData returns the Data field if non-nil, zero value otherwise.
func (o *PaymentRequestDto) GetDataOk() (*PaymentRequestDtoData, bool)
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PaymentRequestDto) SetData(v PaymentRequestDtoData)
SetData sets Data field to given value.