import * as $dara from '@darabonba/typescript'; export declare class ModifyAccountRelationResponseBodyData extends $dara.Model { /** * @remarks * HostId * * @example * HostId */ hostId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ModifyAccountRelationResponseBody extends $dara.Model { /** * @remarks * The status code returned. * * @example * 200 */ code?: string; /** * @remarks * The data returned. */ data?: ModifyAccountRelationResponseBodyData; /** * @remarks * The message returned. * * @example * Message returned */ message?: string; /** * @remarks * The unique ID of the request. * * @example * request_id */ requestId?: string; /** * @remarks * Indicates whether the request is successful. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }