UNPKG

@eddye68/studio-client

Version:

The AWS service Studio client

24 lines 557 B
// src/model/wfl/target.ts var Target = class { constructor(params) { this.__classname__ = "Target"; this.PubChannel = null; this.Issue = null; this.Editions = null; /** * @deprecated DISCONTINUED since 10.12 */ this.PublishedDate = null; /** * @deprecated DISCONTINUED since 10.12 */ this.PublishedVersion = null; this.PubChannel = params.PubChannel; this.Issue = params.Issue ?? null; this.Editions = params.Editions ?? null; } }; export { Target }; //# sourceMappingURL=target.mjs.map