export type FundsNetYieldModel = {
    readonly netAnnualYield?: null | string;
    readonly netDailyYield?: null | string;
    readonly netDailyYieldAnnualized?: null | string;
    readonly netMonthlyYield?: null | string;
    readonly netMonthlyYieldAnnualized?: null | string;
    readonly netWeeklyYield?: null | string;
    readonly netWeeklyYieldAnnualized?: null | string;
    readonly netYearToDateYield?: null | string;
    readonly netYearToDateYieldAnnualized?: null | string;
};
