import * as $dara from '@darabonba/typescript'; export declare class DeleteIMRobotResponseBody extends $dara.Model { /** * @remarks * Indicates whether the call was successful. * * * `true`: The call was successful. * * `false`: The call failed. * * @example * true */ isSuccess?: boolean; /** * @remarks * The request ID. You can use the ID to find logs and troubleshoot issues. * * @example * C21AB7CF-B7AF-410F-BD61-82D1567F**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }