trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
39 lines (38 loc) • 1.43 kB
TypeScript
import { BaseEntity } from '../../../../entities/core-entities/index.js';
/**
* GetTranslationsRequestDto class for sending request
* to get translations from the API. It contains the
* properties for the request to get translations from
* the API.
* @param sportIds The sport IDs to filter the
* translations by in the * request to get translations
* from the API.
* @param locationIds The location IDs to filter the
* translations by in the request to get translations
* from the API.
* @param leagueIds The league IDs to filter the
* translations by in the request to get translations
* from the API.
* @param marketIds The market IDs to filter the
* translations by in the request to get translations
* from the API.
* @param participantIds The participant IDs to filter
* the translations by in the request to get translations
* from the API.
* @param languages The language IDs to filter the
* translations by in the * request to get translations
* from the API.
* @returns GetTranslationsRequestDto instance that
* contains the properties for the request to get
* translations from the API.
*/
export declare class GetTranslationsRequestDto implements BaseEntity {
[key: string]: unknown;
constructor(data?: unknown);
sportIds?: number[];
locationIds?: number[];
leagueIds?: number[];
marketIds?: number[];
participantIds?: number[];
languages?: number[];
}