trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
14 lines (13 loc) • 516 B
TypeScript
import { BaseEntity } from '../../../../entities/core-entities/index.js';
import { ParticipantBodyStructure } from '../../../common/body-entities/responses';
/**
* ParticipantsCollectionResponse class is responsible
* for deserializing the response from the metadata
* API to a collection of participants.
*/
export declare class ParticipantsCollectionResponse implements BaseEntity {
[key: string]: unknown;
constructor(data?: unknown);
data?: ParticipantBodyStructure[];
totalItems?: number;
}