@investingwolf/alpaca-broker-api
Version:
Node.js client for alpaca broker API
29 lines (28 loc) • 1.8 kB
JavaScript
;
/**
* Alpaca Broker API
* Open brokerage accounts, enable commission-free trading, and manage the ongoing user experience with Alpaca Broker API
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.AccountStatus = void 0;
/**
* - **SUBMITTED** The application has been submitted and in process. - **ACTION_REQUIRED** The application requires manual action. - **APPROVAL_PENDING** Initial value. The application approval process is in process. - **APPROVED** The account application has been approved, and waiting to be ACTIVE - **REJECTED** The account application is rejected for some reason - **ACTIVE** The account is fully active. Trading and funding are processed under this status. - **DISABLED** The account is disabled after ACTIVE status. - **ACCOUNT_CLOSED** The account is closed.
*/
var AccountStatus;
(function (AccountStatus) {
AccountStatus[AccountStatus["Submitted"] = 'SUBMITTED'] = "Submitted";
AccountStatus[AccountStatus["ActionRequired"] = 'ACTION_REQUIRED'] = "ActionRequired";
AccountStatus[AccountStatus["ApprovalPending"] = 'APPROVAL_PENDING'] = "ApprovalPending";
AccountStatus[AccountStatus["Approved"] = 'APPROVED'] = "Approved";
AccountStatus[AccountStatus["Rejected"] = 'REJECTED'] = "Rejected";
AccountStatus[AccountStatus["Active"] = 'ACTIVE'] = "Active";
AccountStatus[AccountStatus["Disabled"] = 'DISABLED'] = "Disabled";
AccountStatus[AccountStatus["AccountClosed"] = 'ACCOUNT_CLOSED'] = "AccountClosed";
})(AccountStatus = exports.AccountStatus || (exports.AccountStatus = {}));