@investingwolf/alpaca-broker-api
Version:
Node.js client for alpaca broker API
88 lines (87 loc) • 2.85 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.ACHRelationshipResource = void 0;
class ACHRelationshipResource {
static getAttributeTypeMap() {
return ACHRelationshipResource.attributeTypeMap;
}
}
exports.ACHRelationshipResource = ACHRelationshipResource;
ACHRelationshipResource.discriminator = undefined;
ACHRelationshipResource.attributeTypeMap = [
{
"name": "id",
"baseName": "id",
"type": "string"
},
{
"name": "created_at",
"baseName": "created_at",
"type": "Date"
},
{
"name": "updated_at",
"baseName": "updated_at",
"type": "Date"
},
{
"name": "account_owner_name",
"baseName": "account_owner_name",
"type": "string"
},
{
"name": "bank_account_type",
"baseName": "bank_account_type",
"type": "ACHRelationshipResource.BankAccountTypeEnum"
},
{
"name": "bank_account_number",
"baseName": "bank_account_number",
"type": "string"
},
{
"name": "bank_routing_number",
"baseName": "bank_routing_number",
"type": "string"
},
{
"name": "nickname",
"baseName": "nickname",
"type": "string"
},
{
"name": "account_id",
"baseName": "account_id",
"type": "string"
},
{
"name": "status",
"baseName": "status",
"type": "ACHRelationshipResource.StatusEnum"
}
];
(function (ACHRelationshipResource) {
let BankAccountTypeEnum;
(function (BankAccountTypeEnum) {
BankAccountTypeEnum[BankAccountTypeEnum["Checking"] = 'CHECKING'] = "Checking";
BankAccountTypeEnum[BankAccountTypeEnum["Savings"] = 'SAVINGS'] = "Savings";
})(BankAccountTypeEnum = ACHRelationshipResource.BankAccountTypeEnum || (ACHRelationshipResource.BankAccountTypeEnum = {}));
let StatusEnum;
(function (StatusEnum) {
StatusEnum[StatusEnum["Queued"] = 'QUEUED'] = "Queued";
StatusEnum[StatusEnum["Approved"] = 'APPROVED'] = "Approved";
StatusEnum[StatusEnum["Pending"] = 'PENDING'] = "Pending";
StatusEnum[StatusEnum["CancelRequested"] = 'CANCEL_REQUESTED'] = "CancelRequested";
})(StatusEnum = ACHRelationshipResource.StatusEnum || (ACHRelationshipResource.StatusEnum = {}));
})(ACHRelationshipResource = exports.ACHRelationshipResource || (exports.ACHRelationshipResource = {}));