@investingwolf/alpaca-broker-api
Version:
Node.js client for alpaca broker API
51 lines (50 loc) • 1.31 kB
TypeScript
/**
* 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 BatchJournalResponse {
'id': string;
'error_message': string;
'entry_type': BatchJournalResponse.EntryTypeEnum;
'from_account': string;
'to_account': string;
'symbol': string;
'qty': string | null;
'price': string;
'status': BatchJournalResponse.StatusEnum;
'settle_date': string | null;
'system_date': string | null;
'net_amount': string;
'description': string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace BatchJournalResponse {
enum EntryTypeEnum {
Jnlc
}
enum StatusEnum {
Pending,
Canceled,
Executed,
Queued,
Rejected,
Deleted
}
}