trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
15 lines (14 loc) • 477 B
TypeScript
import { BaseEntity } from '../../../../entities/core-entities/index.js';
/**
* CompetitionsSubscriptionBodyStructure class is a body
* entity class that represents the structure of the body
* of the response of the competitions subscription.
*/
export declare class CompetitionsSubscriptionBodyStructure implements BaseEntity {
[key: string]: unknown;
leagueId?: number;
sportId?: number;
locationId?: number;
success: boolean;
message?: string;
}