Sha256: 115ef2d0de5d060183cb6b387f02e9beca79f3bd36f81398b8f3b9403fc3fe29
Contents?: true
Size: 1.26 KB
Versions: 183
Compression:
Stored size: 1.26 KB
Contents
# CybridApiBank::PostInvoiceBankModel ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **asset** | **String** | The asset code the customer will receive the funds in. | | | **customer_guid** | **String** | The unique identifier for the customer. | [optional] | | **receive_amount** | **Integer** | The amount to be received in base units of the asset, i.e., the amount the customer will receive after fees. ONLY one of receive_amount or deliver_amount is required. | [optional] | | **deliver_amount** | **Integer** | The amount to be delivered in base units of the asset, i.e., the amount the customer will receive before fees. ONLY one of receive_amount or deliver_amount is required. | [optional] | | **account_guid** | **String** | The identifier for the account to use for the transfer. Required if the customer has multiple fiat accounts. Currently only valid for invoices paid to a fiat account. | [optional] | | **labels** | **Array<String>** | The labels associated with the invoice. | [optional] | ## Example ```ruby require 'cybrid_api_bank_ruby' instance = CybridApiBank::PostInvoiceBankModel.new( asset: null, customer_guid: null, receive_amount: null, deliver_amount: null, account_guid: null, labels: null ) ```
Version data entries
183 entries across 183 versions & 1 rubygems