trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
18 lines (17 loc) • 518 B
TypeScript
import { Gender } from './gender.enum';
import { AgeCategory } from './age-category.enum';
import { ParticipantType } from './participant-type.enum';
/**
* ParticipantBodyStructure class is responsible for
* deserializing the response from the metadata
* API to a participant.
*/
export declare class ParticipantBodyStructure {
id?: number;
sportId?: number;
locationId?: number;
name?: string;
gender?: Gender | null;
ageCategory?: AgeCategory | null;
type?: ParticipantType | null;
}