trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
37 lines (36 loc) • 1.36 kB
TypeScript
import { HttpRequestDto } from '../../../common/dtos';
/**
* GetTranslationsRequest 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. The sport IDs are used to
* @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 GetTranslationsRequest instance that contains
* the properties for the request to get translations
* from the API.
*/
export declare class GetTranslationsRequest extends HttpRequestDto {
sportIds?: number[];
locationIds?: number[];
leagueIds?: number[];
marketIds?: number[];
participantIds?: number[];
languages?: number[];
}