/* Options: Date: 2025-12-06 05:28:37 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: AttachmentDownloadRequest.* //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/AttachmentDownload/{AttachmentId}", Verbs="GET") public static class AttachmentDownloadRequest { public UUID AttachmentId = null; public Boolean ViewInBrowser = null; public UUID getAttachmentId() { return AttachmentId; } public AttachmentDownloadRequest setAttachmentId(UUID value) { this.AttachmentId = value; return this; } public Boolean isViewInBrowser() { return ViewInBrowser; } public AttachmentDownloadRequest setViewInBrowser(Boolean value) { this.ViewInBrowser = value; return this; } } }