/* Options: Date: 2026-09-21 23:26:16 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AttachmentViewPageRequest.* //ExcludeTypes: //DefaultImports: */ // @Route("/v1/AttachmentView/{AttachmentId}/page/{Page}", "GET") export class AttachmentViewPageRequest { public AttachmentId: string; public Page: number; public Width: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AttachmentViewPageRequest'; } public getMethod() { return 'GET'; } public createResponse() {} }