@sitecore/sc-contenthub-webclient-sdk
Version:
Sitecore Content Hub WebClient SDK.
22 lines (21 loc) • 737 B
TypeScript
import Link from "../../link";
/**
* Representation of the condition for {@link PolicyResource}.
*
* @remarks
* Note this representation does not provide access to condition direct entities which are present in internal
* system model.
*/
export declare class ConditionResource {
/**
* The condition is met for entities that are direct or indirect descendants of the entities with the
* specified links.
* The entities are combined using the "OR" operator.
*/
entities: Array<Link>;
/**
* The condition is met for entities that are direct descendants of the entities with the specified links.
* The entities are combined using the "OR" operator.
*/
directEntities: Array<Link>;
}