@eddye68/studio-client
Version:
The AWS service Studio client
26 lines • 827 B
JavaScript
// src/model/wfl/attachment.ts
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;
}
};
export {
Attachment
};
//# sourceMappingURL=attachment.mjs.map