import type { MetadataConfigurationRequest } from './metadata-configuration-request.js'; /** * Representation of the 'MetadataConfigurationResponse' schema. */ export type MetadataConfigurationResponse = MetadataConfigurationRequest & { /** * Status of metadata enumeration for the configuration. * @example "IN_PROGRESS" */ enumerationStatus?: 'NEW' | 'IN_PROGRESS' | 'COMPLETED' | 'ERROR' | any; } & Record; //# sourceMappingURL=metadata-configuration-response.d.ts.map