trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
15 lines (14 loc) • 665 B
TypeScript
import { BaseEntity } from '../../../../entities/core-entities/index.js';
import { FixturesSubscriptionBodyStructure } from '../../../common/body-entities';
/**
* Fixtures Subscription Collection Response class
* (used for serialization) - represents the response
* body of the fixtures subscription collection endpoint.
* This class is used to deserialize the response from the
* fixtures subscription collection endpoint.
* It contains an array of fixtures subscription body structures.
*/
export declare class FixturesSubscriptionCollectionResponse implements BaseEntity {
[key: string]: unknown;
fixtures?: FixturesSubscriptionBodyStructure[];
}