/* Options: Date: 2026-09-21 23:21:41 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AttachmentViewPageRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/AttachmentView/{AttachmentId}/page/{Page}", Verbs="GET") public static class AttachmentViewPageRequest { public UUID AttachmentId = null; public Integer Page = null; public Integer Width = null; public UUID getAttachmentId() { return AttachmentId; } public AttachmentViewPageRequest setAttachmentId(UUID value) { this.AttachmentId = value; return this; } public Integer getPage() { return Page; } public AttachmentViewPageRequest setPage(Integer value) { this.Page = value; return this; } public Integer getWidth() { return Width; } public AttachmentViewPageRequest setWidth(Integer value) { this.Width = value; return this; } } }