@infosel-sdk/funds
Version:
SDK de Fondos para la plataforma de servicios financieros Infosel
12 lines (11 loc) • 461 B
TypeScript
export type FundsYieldModel = {
readonly annualYield?: null | number;
readonly dailyYield?: null | number;
readonly dailyYieldAnnualized?: null | number;
readonly monthlyYield?: null | number;
readonly monthlyYieldAnnualized?: null | number;
readonly weeklyYield?: null | number;
readonly weeklyYieldAnnualized?: null | number;
readonly yearToDateYield?: null | number;
readonly yearToDateYieldAnnualized?: null | number;
};