UNPKG

trade360-nodejs-sdk

Version:

LSports Trade360 SDK for Node.js

17 lines (16 loc) 738 B
import { HttpRequestDto } from '../../../common/dtos'; import { ManualSuspensionsRequestBodyStructure } from '../../../common/body-entities'; /** * ChangeManualSuspensionRequest 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 ChangeManualSuspensionRequest instance that contains * the properties for the request to change manual suspensions * from the API. */ export declare class ChangeManualSuspensionsRequest extends HttpRequestDto { suspensions: ManualSuspensionsRequestBodyStructure[]; }