import * as $dara from '@darabonba/typescript'; export declare class VerifyResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * 1ed33293-2e48-6b14-861e-538e28e408eb */ requestId?: string; /** * @remarks * The result of the signature verification. Valid values: * * - **true** * * - **false** * * @example * true */ signatureValid?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }