/* tslint:disable */ /* eslint-disable */ /** * fundingsources * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Funding source purchase, hold information about a funding source purchase (buyer, price, amount) */ export interface FundingSourcePurchase { /** * The amount bought (a portion of the whole fraction being sold) */ amount: number; /** * The buyer funding account (savings account) key */ depositAccountKey: string; /** * The price paid for the amount */ price: number; }