import * as $dara from '@darabonba/typescript'; /** */ export declare class AddAccountRelationResponseBodyData extends $dara.Model { /** * @remarks * The IP address of the request * * @example * HostId */ hostId?: string; /** * @remarks * The ID of the financial relationship. * * @example * RelationId */ relationId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class AddAccountRelationResponseBody extends $dara.Model { /** * @remarks * The status code returned. * * @example * 200 */ code?: string; /** * @remarks * The data returned. */ data?: AddAccountRelationResponseBodyData; /** * @remarks * The message returned. * * @example * Message returned */ message?: string; /** * @remarks * The 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; }); }