@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
45 lines (44 loc) • 1.27 kB
TypeScript
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { BankAddress } from "./bank-address";
import { BillingDetails } from "./billing-details";
/**
* Relevant fields for U.S. bank accounts.
* @export
* @interface WireCreationRequestUs
*/
export interface WireCreationRequestUs {
/**
* Universally unique identifier (UUID v4) idempotency key. This key is utilized to ensure exactly-once execution of mutating requests.
* @type {string}
* @memberof WireCreationRequestUs
*/
idempotencyKey: string;
/**
* Account number that identifies the bank account.
* @type {string}
* @memberof WireCreationRequestUs
*/
accountNumber: string;
/**
* ABA routing number for the bank account. Note this has to be specific for bank wire transfers.
* @type {string}
* @memberof WireCreationRequestUs
*/
routingNumber: string;
/**
*
* @type {BillingDetails}
* @memberof WireCreationRequestUs
*/
billingDetails: BillingDetails;
/**
*
* @type {BankAddress}
* @memberof WireCreationRequestUs
*/
bankAddress: BankAddress;
}