Create Transfer Request
data class CreateTransferRequest(val amount: Int, val accountId: String, val currency: String? = null, val sourcePaymentMethodId: String? = null, val destinationPaymentMethodId: String? = null, val description: String? = null, val metadata: Map<String, String>? = null)
Request payload for creating a new transfer.
Constructors
Properties
Link copied to clipboard
Optional description that appears on the transfer record.
Link copied to clipboard
@SerializedName(value = "destination_payment_method_id" )
Identifier of the payment method to push funds to. Uses the account default if omitted.
Link copied to clipboard
Identifier of the payment method to pull funds from. Uses the account default if omitted.