@itwin/imodels-client-authoring
Version:
iModels API client wrapper for applications that author iModels.
12 lines • 557 B
TypeScript
import { IModelScopedOperationParams } from "@itwin/imodels-client-management";
/** Properties that should be specified when acquiring a new Briefcase. */
export interface BriefcaseProperties {
/** Name of the device which will hold the briefcase. */
deviceName: string;
}
/** Parameters for acquire Briefcase operation. */
export interface AcquireBriefcaseParams extends IModelScopedOperationParams {
/** Properties of the new Briefcase. */
briefcaseProperties?: BriefcaseProperties;
}
//# sourceMappingURL=BriefcaseOperationParams.d.ts.map