/* Options: Date: 2025-12-06 08:13:27 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: AttachmentDownloadByConversationRequest.* //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/AttachmentDownloadByConversation/{AttachmentId}/{ConversationDetailId}", Verbs="GET") public static class AttachmentDownloadByConversationRequest { public UUID AttachmentId = null; public UUID ConversationDetailId = null; public UUID getAttachmentId() { return AttachmentId; } public AttachmentDownloadByConversationRequest setAttachmentId(UUID value) { this.AttachmentId = value; return this; } public UUID getConversationDetailId() { return ConversationDetailId; } public AttachmentDownloadByConversationRequest setConversationDetailId(UUID value) { this.ConversationDetailId = value; return this; } } }