UNPKG

@investingwolf/alpaca-broker-api

Version:
46 lines (45 loc) 1.16 kB
/** * 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. */ export declare class InlineResponse2006 { 'client_id'?: string; 'name'?: string; 'description'?: string; 'url'?: string; /** * URL of Terms of Use */ 'terms_of_use'?: string; /** * URL of Privacy Policy */ 'privacy_policy'?: string; 'status'?: InlineResponse2006.StatusEnum; 'redirect_uri'?: Array<string>; 'live_trading_approved'?: boolean; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace InlineResponse2006 { enum StatusEnum { Active, Disabled } }