@infosel-sdk/funds
Version:
SDK de Fondos para la plataforma de servicios financieros Infosel
16 lines (15 loc) • 540 B
TypeScript
export type FundsModel = {
readonly id?: null | number;
readonly marketTypeId?: null | number;
readonly valueTypeIds?: null | number;
readonly exchangeId?: null | number;
readonly symbol?: null | string;
readonly issuer?: null | string;
readonly series?: null | string;
readonly isTrading?: null | number;
readonly name?: null | string;
readonly instrumentKey?: null | string;
readonly exchangeValueType?: null | string;
readonly isin?: null | string;
readonly active?: null | number;
};