import * as $dara from '@darabonba/typescript'; export declare class GetTraceAppConfigResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. * * Valid values: * * * 2xx: The request was successful. * * 3xx: The request was redirected. * * 4xx: A request error occurred. * * 5xx: A server error occurred. * * @example * 200 */ code?: number; /** * @remarks * The custom settings of the application, which is a JSON string. For more information, see **Additional description of response parameters**. * * @example * {"profiler":{"enable":true}} */ data?: string; /** * @remarks * The returned message. */ message?: string; /** * @remarks * The request ID. * * @example * 78901766-3806-4E96-8E47-CFEF59E4**** */ requestId?: string; /** * @remarks * Indicates whether the request was successful. * * Valid values: * * * true * * false * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }