interface GroupTaskUsageSchema {
    assigneeId?: number;
    baseRates?: BaseRate;
    creatorId?: number;
    currency?: Currency;
    dateFrom?: string;
    dateTo?: string;
    excludeApprovalsForEditedTranslations?: boolean;
    format: ReportsModel.Format;
    individualRates?: IndividualRate[];
    netRateSchemes?: NetRateSchemas;
    projectIds?: number[];
    type:
        | "time"
        | "performance"
        | "workload"
        | "create-vs-resolve"
        | "cost";
    wordsCountFrom?: number;
    wordsCountTo?: number;
}

Properties

assigneeId?: number
baseRates?: BaseRate
creatorId?: number
currency?: Currency
dateFrom?: string
dateTo?: string
excludeApprovalsForEditedTranslations?: boolean
individualRates?: IndividualRate[]
netRateSchemes?: NetRateSchemas
projectIds?: number[]
type:
    | "time"
    | "performance"
    | "workload"
    | "create-vs-resolve"
    | "cost"
wordsCountFrom?: number
wordsCountTo?: number