@itwin/property-validation-client
Version:
Property Validation client for the iTwin platform
16 lines • 562 B
TypeScript
import type { SchemaList } from "..//CommonInterfaces";
/** Properties info search results */
export interface PropertiesSearchResults {
schemas: SchemaList[];
}
/** Properties info data object */
export interface PropertiesData {
searchProperty: PropertiesSearchResults;
}
/** Get Schema Info API response. */
export interface ResponseFromGetPropertiesInfo {
/** The status of the properties info extraction. One of 'available', 'unavailable'. */
status: string;
data: PropertiesData;
}
//# sourceMappingURL=PropertiesInfoInterfaces.d.ts.map