/* Options: Date: 2025-12-06 09:41: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: DropboxShareRequest.* //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/DropboxShare/{ContactId}/{AgentId}/{AttachmentId}/{SharerAgentId}", Verbs="POST,OPTIONS") // @Route(Path="/v1/DropboxShare/{AgentId}/{AttachmentId}/{SharerAgentId}", Verbs="POST,OPTIONS") // @Route(Path="/v1/DropboxShare/{DropboxShareId}", Verbs="DELETE,OPTIONS") // @Route(Path="/v1/DropboxShare/{DropboxShareId}/{canShare}", Verbs="PUT,OPTIONS") public static class DropboxShareRequest implements IReturn { public Integer ContactId = null; public Integer DropboxShareId = null; public Integer AgentId = null; public UUID AttachmentId = null; public Integer SharerAgentId = null; public Boolean canShare = null; public Integer getContactId() { return ContactId; } public DropboxShareRequest setContactId(Integer value) { this.ContactId = value; return this; } public Integer getDropboxShareId() { return DropboxShareId; } public DropboxShareRequest setDropboxShareId(Integer value) { this.DropboxShareId = value; return this; } public Integer getAgentId() { return AgentId; } public DropboxShareRequest setAgentId(Integer value) { this.AgentId = value; return this; } public UUID getAttachmentId() { return AttachmentId; } public DropboxShareRequest setAttachmentId(UUID value) { this.AttachmentId = value; return this; } public Integer getSharerAgentId() { return SharerAgentId; } public DropboxShareRequest setSharerAgentId(Integer value) { this.SharerAgentId = value; return this; } public Boolean isCanShare() { return canShare; } public DropboxShareRequest setCanShare(Boolean value) { this.canShare = value; return this; } private static Object responseType = DropboxShareResponse.class; public Object getResponseType() { return responseType; } } public static class DropboxShareResponse { public ResponseStatus ResponseStatus = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public DropboxShareResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }