Interface GetQualificationOptions

interface GetQualificationOptions {
    exclude_org_data?: boolean;
    exclude_teams_data?: boolean;
    order?: "asc" | "desc";
    page?: number;
    size?: number;
    sort?: string | string[];
    title?: string;
}

Properties

exclude_org_data?: boolean
exclude_teams_data?: boolean
order?: "asc" | "desc"
page?: number
size?: number
sort?: string | string[]
title?: string