import { RestResponse } from '../../../model/common';
import { Response } from '../../../internal/interfaces/serializable';
export declare class GetDCPResp implements Response<RestResponse> {
    /**
     * Auto cancel order trigger setting time, the unit is second. Range: timeout=-1 (meaning unset) or 5 <= timeout <= 86400
     */
    timeout?: number;
    /**
     * List of trading pairs. Separated by commas; empty means all trading pairs
     */
    symbols?: string;
    /**
     * System current time (in seconds)
     */
    currentTime?: number;
    /**
     * Trigger cancellation time (in seconds)
     */
    triggerTime?: number;
    /**
     * Private constructor, please use the corresponding static methods to construct the object.
     */
    private constructor();
    /**
     * common response
     */
    commonResponse?: RestResponse;
    setCommonResponse(response: RestResponse): void;
    /**
     * Convert the object to a JSON string.
     */
    toJson(): string;
    /**
     * Create an object from a JSON string.
     */
    static fromJson(input: string): GetDCPResp;
    /**
     * Create an object from Js Object.
     */
    static fromObject(jsonObject: Object): GetDCPResp;
}
