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