interface ExportGlossaryRequest {
    authorId?: number;
    authorIds?: number[];
    caseSensitive?: boolean;
    dateFrom?: string;
    dateTo?: string;
    exportFields?: ExportField[];
    exportType?: ExportType;
    format?: GlossaryFormat;
    gender?: TermGender;
    genders?: TermGender[];
    languageIds?: string[];
    partOfSpeech?: TermPartOfSpeech;
    partsOfSpeech?: TermPartOfSpeech[];
    searchFullMatch?: boolean;
    searchStrict?: boolean;
    status?: TermStatus;
    statuses?: TermStatus[];
    text?: string;
    type?: TermType;
    types?: TermType[];
}

Properties

authorId?: number

use authorIds instead

authorIds?: number[]
caseSensitive?: boolean
dateFrom?: string
dateTo?: string
exportFields?: ExportField[]
exportType?: ExportType
gender?: TermGender

use genders instead

genders?: TermGender[]
languageIds?: string[]
partOfSpeech?: TermPartOfSpeech

use partsOfSpeech instead

partsOfSpeech?: TermPartOfSpeech[]
searchFullMatch?: boolean
searchStrict?: boolean
status?: TermStatus

use statuses instead

statuses?: TermStatus[]
text?: string
type?: TermType

use types instead

types?: TermType[]