UNPKG

@eddye68/studio-client

Version:

The AWS service Studio client

51 lines (50 loc) 1.85 kB
"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // src/model/wfl/attachment.ts var attachment_exports = {}; __export(attachment_exports, { Attachment: () => Attachment }); module.exports = __toCommonJS(attachment_exports); var Attachment = class { constructor(params) { this.__classname__ = "Attachment"; this.Rendition = null; this.Type = null; this.Content = null; this.FilePath = null; this.FileUrl = null; this.EditionId = null; this.ContentSourceFileLink = null; this.ContentSourceProxyLink = null; this.Rendition = params.Rendition ?? null; this.Type = params.Type ?? null; this.Content = params.Content ?? null; this.FilePath = params.FilePath ?? null; this.FileUrl = params.FileUrl ?? null; this.EditionId = params.EditionId ?? null; this.ContentSourceFileLink = params.ContentSourceFileLink ?? null; this.ContentSourceProxyLink = params.ContentSourceProxyLink ?? null; } }; // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { Attachment }); //# sourceMappingURL=attachment.js.map