@eddye68/studio-client
Version:
The AWS service Studio client
21 lines (18 loc) • 797 B
TypeScript
import { Attachment } from './attachment.js';
import { Edition } from './edition.js';
declare class Page {
__classname__: string;
Width: number | null;
Height: number | null;
PageNumber: string | null;
PageOrder: number | null;
Files: Attachment[] | null;
Edition: Edition | null;
Master: string | null;
Instance: string | null;
PageSequence: number | null;
Renditions: string[] | null;
Orientation: string | null;
constructor(Width?: number | null, Height?: number | null, PageNumber?: string | null, PageOrder?: number | null, Files?: Attachment[] | null, Edition?: Edition | null, Master?: string | null, Instance?: string | null, PageSequence?: number | null, Renditions?: string[] | null, Orientation?: string | null);
}
export { Page };