@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
53 lines (50 loc) • 1.37 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
// May contain unused imports in some cases
// @ts-ignore
import { BankAddress } from "./bank-address";
// May contain unused imports in some cases
// @ts-ignore
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;
}