UNPKG

trade360-nodejs-sdk

Version:

LSports Trade360 SDK for Node.js

19 lines (18 loc) 826 B
import { ManualSuspensionsRequestBodyStructure } from '../../../common/body-entities'; import { BaseEntity } from '../../../../entities/core-entities/index.js'; /** * ChangeManualSuspensionRequestDto class for sending * request to change manual suspensions from the API. * It contains the properties for the request to change * manual suspensions from the API. * @param suspensions The suspensions to change in the request * to change manual suspensions from the API. * @returns ChangeManualSuspensionRequestDto instance that * contains the properties for the request to change manual * suspensions from the API. */ export declare class ChangeManualSuspensionsRequestDto implements BaseEntity { [key: string]: unknown; constructor(data?: unknown); suspensions: ManualSuspensionsRequestBodyStructure[]; }