UNPKG

@sitecore/sc-contenthub-webclient-sdk

Version:

Sitecore Content Hub WebClient SDK.

12 lines 423 B
import Guard from "../../guard"; export class UploadRequest { constructor(source, configurationName, actionName) { Guard.notNull(source); Guard.stringNotNullOrEmpty(configurationName); Guard.stringNotNullOrEmpty(actionName); this.source = source; this.configurationName = configurationName; this.actionName = actionName; } } //# sourceMappingURL=upload-request.js.map