import * as $dara from '@darabonba/typescript'; export declare class GetAccountRelationRequest extends $dara.Model { /** * @remarks * The ID of the financial relationship. Value returned by calling the AddAccountRelation operation. * * @example * 1234 */ relationId?: number; /** * @remarks * The unique ID of the request. The ID is used to mark a request and troubleshoot a problem. * * @example * requestId */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }