UNPKG

@eddye68/studio-client

Version:

The AWS service Studio client

32 lines 959 B
// src/model/wfl/page.ts var Page = class { constructor(Width = null, Height = null, PageNumber = null, PageOrder = null, Files = null, Edition = null, Master = null, Instance = null, PageSequence = null, Renditions = null, Orientation = null) { this.__classname__ = "Page"; this.Width = null; this.Height = null; this.PageNumber = null; this.PageOrder = null; this.Files = null; this.Edition = null; this.Master = null; this.Instance = null; this.PageSequence = null; this.Renditions = null; this.Orientation = null; this.Width = Width; this.Height = Height; this.PageNumber = PageNumber; this.PageOrder = PageOrder; this.Files = Files; this.Edition = Edition; this.Master = Master; this.Instance = Instance; this.PageSequence = PageSequence; this.Renditions = Renditions; this.Orientation = Orientation; } }; export { Page }; //# sourceMappingURL=page.mjs.map