/** * Bleumi Pay REST API * A simple and powerful REST API to integrate ERC-20, Ethereum, xDai, Algorand payments and/or payouts into your business or application * * The version of the OpenAPI document: 1.0.0 * Contact: info@bleumi.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from '../api'; export class Payout { /** * Address of receiver. This address must be able to receive payments from smart contracts. */ 'transferAddress': string; /** * Amount of token to transfer */ 'amount': string; /** * (Only for Algorand) Base64 serialization of an encoded LogicSig signed by the source of the payout */ 'authorization'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "transferAddress", "baseName": "transferAddress", "type": "string" }, { "name": "amount", "baseName": "amount", "type": "string" }, { "name": "authorization", "baseName": "authorization", "type": "string" } ]; static getAttributeTypeMap() { return Payout.attributeTypeMap; } }