@sitecore/sc-contenthub-webclient-sdk
Version:
Sitecore Content Hub WebClient SDK.
20 lines (19 loc) • 479 B
TypeScript
import type { Nullable } from "..";
/**
* Defines the property copy options resource.
*/
export declare class PropertyCopyOptionResource {
/**
* Gets or sets the name of the property.
*/
property: string;
/**
* Gets or sets the copy method.
*/
method: string;
/**
* Gets or sets the new value for the property.
*/
newValue: Nullable<string>;
constructor(property: string, method: string, newValue: Nullable<string>);
}