import { AdtService } from './adt-service.js'; import type { AdtCategory, BusinessObject } from '../../types/index.js'; /** * BusinessObjectsService implements ADT requests to obtain the list of business objects. */ export declare class BusinessObjectsService extends AdtService { /** * @see AdtService.getAdtCatagory() */ private static readonly adtCategory; /** * Get ADT scheme ID. * * @returns AdtCategory */ static getAdtCatagory(): AdtCategory; /** * Get all business objects from ADT service. * * @param maxResults - The maximum number of business objects to be returned. * @returns A list of business objects. */ getBusinessObjects(maxResults?: number): Promise; /** * Parse the XML document of business object entries from ADT service. * * @param xml xml document containing business object entries. * @returns A list of business object names. */ private parseBOResponse; } //# sourceMappingURL=businessobjects-service.d.ts.map