@investingwolf/alpaca-broker-api
Version:
Node.js client for alpaca broker API
59 lines (58 loc) • 1.37 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.Account = void 0;
class Account {
static getAttributeTypeMap() {
return Account.attributeTypeMap;
}
}
exports.Account = Account;
Account.discriminator = undefined;
Account.attributeTypeMap = [
{
"name": "id",
"baseName": "id",
"type": "string"
},
{
"name": "account_number",
"baseName": "account_number",
"type": "string"
},
{
"name": "status",
"baseName": "status",
"type": "AccountStatus"
},
{
"name": "currency",
"baseName": "currency",
"type": "string"
},
{
"name": "created_at",
"baseName": "created_at",
"type": "Date"
},
{
"name": "last_equity",
"baseName": "last_equity",
"type": "string"
},
{
"name": "kyc_results",
"baseName": "kyc_results",
"type": "KycResult"
}
];