import * as $dara from '@darabonba/typescript'; export declare class ModifyHostAvailabilityResponseBody 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 * 16E815A3-47E1-4290-87F9-D5C99471FF45 */ 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; }); }