@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
23 lines (19 loc) • 664 B
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.
*/
/**
* Status of the account. A `pending` status indicates that the linking is in-progress; `complete` indicates the account was linked successfully; `failed` indicates it failed.
* @export
* @enum {string}
*/
export const ExternalFiatAccountStatus = {
Pending: "pending",
Complete: "complete",
Failed: "failed"
} as const;
export type ExternalFiatAccountStatus =
typeof ExternalFiatAccountStatus[keyof typeof ExternalFiatAccountStatus];