/** * 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 declare const ExternalFiatAccountStatus: { readonly Pending: "pending"; readonly Complete: "complete"; readonly Failed: "failed"; }; export declare type ExternalFiatAccountStatus = typeof ExternalFiatAccountStatus[keyof typeof ExternalFiatAccountStatus];