@circle-fin/circle-sdk
Version:
Node.js SDK for Circle API
17 lines (16 loc) • 589 B
TypeScript
/**
* 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 payout. Status `pending` indicates that the payout is in process; `complete` indicates it finished successfully; `failed` indicates it failed.
* @export
* @enum {string}
*/
export declare const PayoutStatus: {
readonly Pending: "pending";
readonly Complete: "complete";
readonly Failed: "failed";
};
export declare type PayoutStatus = typeof PayoutStatus[keyof typeof PayoutStatus];