trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
17 lines (16 loc) • 648 B
TypeScript
import { BaseEntity } from '../../../../entities/core-entities/index.js';
import { SuspensionsBodyStructure } from '../../../common/body-entities';
/**
* Get Manual Suspensions Response class
* (used for serialization) - represents the response
* body of the get manual suspensions endpoint.
* This class is used to deserialize the response from the
* get manual suspensions endpoint.
* It contains the succeeded flag, reason, and suspensions.
*/
export declare class GetManualSuspensionsResponse implements BaseEntity {
[key: string]: unknown;
succeeded: boolean;
reason?: string;
suspensions: SuspensionsBodyStructure[];
}