@sitecore/sc-contenthub-webclient-sdk
Version:
Sitecore Content Hub WebClient SDK.
29 lines (28 loc) • 871 B
TypeScript
import type { Nullable } from "../";
import { PropertyCopyOptionResource } from "./property-copy-option-resource";
import { RelationCopyOptionResource } from "./relation-copy-option-resource";
/**
* Defines the entity copy options resource.
*/
export declare class EntityCopyOptionsResource {
/**
* Gets or sets the copy profile identifier.
*/
copyProfileIdentifier: Nullable<string>;
/**
* Gets or sets the copy profile id.
*/
copyProfileId: Nullable<number>;
/**
* Gets or sets the culture load option.
*/
destinationEntityId: Nullable<number>;
/**
* Gets or sets the relation copy options.
*/
relationCopyOptions: Nullable<Array<RelationCopyOptionResource>>;
/**
* Gets or sets the property copy options.
*/
propertyCopyOptions: Nullable<Array<PropertyCopyOptionResource>>;
}