import * as $dara from '@darabonba/typescript'; export declare class GetStackResponseBodyStackInfoExtInfo extends $dara.Model { /** * @remarks * The content of the custom parameter. * * @example * input=254275& */ info?: string; /** * @remarks * The type of the custom parameter. * * @example * 41 */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetStackResponseBodyStackInfo extends $dara.Model { /** * @remarks * The name of the operation. * * @example * Tomcat Servlet Process */ api?: string; /** * @remarks * The number of times the method is called. * * @example * 1 */ callCount?: string; /** * @remarks * The duration. Unit: milliseconds. * * @example * 32 */ duration?: number; /** * @remarks * The error message. * * @example * java.lang.NullPointerException */ exception?: string; /** * @remarks * The information about the array object. */ extInfo?: GetStackResponseBodyStackInfoExtInfo; /** * @remarks * The number of rows in the method stack information. * * @example * 34 */ line?: string; /** * @remarks * The ID of the RPC mode. * * @example * 0.1 */ rpcId?: string; /** * @remarks * The name of the service. * * @example * /com/test */ serviceName?: string; /** * @remarks * The start time of the call method. * * @example * 1653555396 */ startTime?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetStackResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * B34C3A43-A901-5F94-9DAD-758CE4****** */ requestId?: string; /** * @remarks * The method stack details. */ stackInfo?: GetStackResponseBodyStackInfo[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }