import * as $dara from '@darabonba/typescript'; export declare class CreateHostAvailabilityResponseBody extends $dara.Model { /** * @remarks * The status code. * * > The status code 200 indicates that the request was successful. * * @example * 200 */ code?: string; /** * @remarks * The error message. * * @example * The specified resource is not found. */ message?: string; /** * @remarks * The request ID. * * @example * ACBDBB40-DFB6-4F4C-8957-51FFB233969C */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: * * * true * * false * * @example * true */ success?: boolean; /** * @remarks * The ID of the availability monitoring task. * * @example * 12345 */ taskId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }