/* Options: Date: 2025-12-06 08:32:55 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: DropboxShareRequestExtended.* //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/DropboxShareExtended/{ContactId}/{AttachmentId}/{SharerAgentId}", Verbs="GET,OPTIONS") // @Route(Path="/v1/DropboxShareExtended/DB/{AttachmentId}/{SharerAgentId}", Verbs="GET,OPTIONS") public static class DropboxShareRequestExtended implements IReturn { public Integer ContactId = null; public String AttachmentId = null; public Integer SharerAgentId = null; public Integer getContactId() { return ContactId; } public DropboxShareRequestExtended setContactId(Integer value) { this.ContactId = value; return this; } public String getAttachmentId() { return AttachmentId; } public DropboxShareRequestExtended setAttachmentId(String value) { this.AttachmentId = value; return this; } public Integer getSharerAgentId() { return SharerAgentId; } public DropboxShareRequestExtended setSharerAgentId(Integer value) { this.SharerAgentId = value; return this; } private static Object responseType = DropboxShareResponseExtended.class; public Object getResponseType() { return responseType; } } public static class DropboxShareResponseExtended { public ResponseStatus ResponseStatus = null; public ArrayList DropboxShareExtended = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public DropboxShareResponseExtended setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getDropboxShareExtended() { return DropboxShareExtended; } public DropboxShareResponseExtended setDropboxShareExtended(ArrayList value) { this.DropboxShareExtended = value; return this; } } public static class DropboxShareExtended { public Integer DropboxShareId = null; public Integer SharerAgentId = null; public Integer ContactId = null; public Integer ProjectId = null; public Integer AgentId = null; public String FirstName = null; public String LastName = null; public UUID AttachmentId = null; public Boolean CanShare = null; public Integer getDropboxShareId() { return DropboxShareId; } public DropboxShareExtended setDropboxShareId(Integer value) { this.DropboxShareId = value; return this; } public Integer getSharerAgentId() { return SharerAgentId; } public DropboxShareExtended setSharerAgentId(Integer value) { this.SharerAgentId = value; return this; } public Integer getContactId() { return ContactId; } public DropboxShareExtended setContactId(Integer value) { this.ContactId = value; return this; } public Integer getProjectId() { return ProjectId; } public DropboxShareExtended setProjectId(Integer value) { this.ProjectId = value; return this; } public Integer getAgentId() { return AgentId; } public DropboxShareExtended setAgentId(Integer value) { this.AgentId = value; return this; } public String getFirstName() { return FirstName; } public DropboxShareExtended setFirstName(String value) { this.FirstName = value; return this; } public String getLastName() { return LastName; } public DropboxShareExtended setLastName(String value) { this.LastName = value; return this; } public UUID getAttachmentId() { return AttachmentId; } public DropboxShareExtended setAttachmentId(UUID value) { this.AttachmentId = value; return this; } public Boolean isCanShare() { return CanShare; } public DropboxShareExtended setCanShare(Boolean value) { this.CanShare = value; return this; } } }