export type FundsProspectusMdModel = {
    readonly fundId?: null | number;
    readonly series?: null | string[];
    readonly issuer?: null | string;
    readonly bussinesName?: null | string;
    readonly fundDateAuth?: null | string;
    readonly fundType?: null | string;
    readonly fundAssetClass?: null | string;
    readonly administrator?: null | string;
    readonly fundTerm?: null | string;
    readonly investmentRegime?: null | string;
    readonly liquidity?: null | string;
    readonly lockInPeriod?: null | string;
    readonly netAsset?: null | number;
    readonly assetsUnderManagement?: null | number;
    readonly fundHoldings?: null | number;
    readonly marketRating?: null | string;
    readonly creditRating?: null | string;
    readonly fundManager?: null | string;
    readonly active?: null | number;
    readonly closeTime?: null | string;
};
