@investingwolf/alpaca-broker-api
Version:
Node.js client for alpaca broker API
72 lines (71 loc) • 1.88 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.TrustedContact = void 0;
/**
* This model input is optional. However, the client should make reasonable effort to obtain the trusted contact information. See more details in [FINRA Notice 17-11](https://www.finra.org/sites/default/files/Regulatory-Notice-17-11.pdf)
*/
class TrustedContact {
static getAttributeTypeMap() {
return TrustedContact.attributeTypeMap;
}
}
exports.TrustedContact = TrustedContact;
TrustedContact.discriminator = undefined;
TrustedContact.attributeTypeMap = [
{
"name": "given_name",
"baseName": "given_name",
"type": "string"
},
{
"name": "family_name",
"baseName": "family_name",
"type": "string"
},
{
"name": "email_address",
"baseName": "email_address",
"type": "string"
},
{
"name": "phone_number",
"baseName": "phone_number",
"type": "string"
},
{
"name": "street_address",
"baseName": "street_address",
"type": "Array<string>"
},
{
"name": "city",
"baseName": "city",
"type": "string"
},
{
"name": "state",
"baseName": "state",
"type": "string"
},
{
"name": "postal_code",
"baseName": "postal_code",
"type": "string"
},
{
"name": "country",
"baseName": "country",
"type": "string"
}
];