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;
};
