/* Options: Date: 2025-12-06 07:29:35 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: DropboxProjectRequest.* //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/Dropbox/Project/{ProjectId}/{LoggedInAgentId}", Verbs="GET,OPTIONS") public static class DropboxProjectRequest implements IReturn { public ArrayList Dropbox = new ArrayList(); public Integer ProjectId = null; public Integer LoggedInAgentId = null; public ArrayList getDropbox() { return Dropbox; } public DropboxProjectRequest setDropbox(ArrayList value) { this.Dropbox = value; return this; } public Integer getProjectId() { return ProjectId; } public DropboxProjectRequest setProjectId(Integer value) { this.ProjectId = value; return this; } public Integer getLoggedInAgentId() { return LoggedInAgentId; } public DropboxProjectRequest setLoggedInAgentId(Integer value) { this.LoggedInAgentId = value; return this; } private static Object responseType = DropboxResponse.class; public Object getResponseType() { return responseType; } } public static class DropboxResponse { public ResponseStatus ResponseStatus = null; public ArrayList Dropbox = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public DropboxResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getDropbox() { return Dropbox; } public DropboxResponse setDropbox(ArrayList value) { this.Dropbox = value; return this; } } public static class Dropbox { public Integer Id = null; public UUID AttachmentId = null; public String FirstName = null; public String LastName = null; public String TableName = null; public Integer RecordId = null; public String Description = null; public String DocumentType = null; public String DocumentGroup = null; public Date DateAdded = null; public Boolean Locked = null; public Double FileSizeInKB = null; public Integer getId() { return Id; } public Dropbox setId(Integer value) { this.Id = value; return this; } public UUID getAttachmentId() { return AttachmentId; } public Dropbox setAttachmentId(UUID value) { this.AttachmentId = value; return this; } public String getFirstName() { return FirstName; } public Dropbox setFirstName(String value) { this.FirstName = value; return this; } public String getLastName() { return LastName; } public Dropbox setLastName(String value) { this.LastName = value; return this; } public String getTableName() { return TableName; } public Dropbox setTableName(String value) { this.TableName = value; return this; } public Integer getRecordId() { return RecordId; } public Dropbox setRecordId(Integer value) { this.RecordId = value; return this; } public String getDescription() { return Description; } public Dropbox setDescription(String value) { this.Description = value; return this; } public String getDocumentType() { return DocumentType; } public Dropbox setDocumentType(String value) { this.DocumentType = value; return this; } public String getDocumentGroup() { return DocumentGroup; } public Dropbox setDocumentGroup(String value) { this.DocumentGroup = value; return this; } public Date getDateAdded() { return DateAdded; } public Dropbox setDateAdded(Date value) { this.DateAdded = value; return this; } public Boolean isLocked() { return Locked; } public Dropbox setLocked(Boolean value) { this.Locked = value; return this; } public Double getFileSizeInKB() { return FileSizeInKB; } public Dropbox setFileSizeInKB(Double value) { this.FileSizeInKB = value; return this; } } public static class DropboxExtended extends Dropbox { public String AttachmentName = null; public String AgentName = null; public String MimeType = null; public Boolean IsAgent = null; public Boolean IsContact = null; public Boolean IsShared = null; public Boolean CanShare = null; public String ShareList = null; public String getAttachmentName() { return AttachmentName; } public DropboxExtended setAttachmentName(String value) { this.AttachmentName = value; return this; } public String getAgentName() { return AgentName; } public DropboxExtended setAgentName(String value) { this.AgentName = value; return this; } public String getMimeType() { return MimeType; } public DropboxExtended setMimeType(String value) { this.MimeType = value; return this; } public Boolean getIsAgent() { return IsAgent; } public DropboxExtended setIsAgent(Boolean value) { this.IsAgent = value; return this; } public Boolean getIsContact() { return IsContact; } public DropboxExtended setIsContact(Boolean value) { this.IsContact = value; return this; } public Boolean getIsShared() { return IsShared; } public DropboxExtended setIsShared(Boolean value) { this.IsShared = value; return this; } public Boolean isCanShare() { return CanShare; } public DropboxExtended setCanShare(Boolean value) { this.CanShare = value; return this; } public String getShareList() { return ShareList; } public DropboxExtended setShareList(String value) { this.ShareList = value; return this; } } }