/* Options: Date: 2025-12-06 07:45:46 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: ContactShareRequest.* //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/ContactShare/{ContactId}/{AgentId}", Verbs="POST,OPTIONS") // @Route(Path="/v1/ContactShare/{ContactShareId}", Verbs="DELETE,OPTIONS") public static class ContactShareRequest implements IReturn { public Integer ContactId = null; public Integer ContactShareId = null; public Integer AgentId = null; public Integer getContactId() { return ContactId; } public ContactShareRequest setContactId(Integer value) { this.ContactId = value; return this; } public Integer getContactShareId() { return ContactShareId; } public ContactShareRequest setContactShareId(Integer value) { this.ContactShareId = value; return this; } public Integer getAgentId() { return AgentId; } public ContactShareRequest setAgentId(Integer value) { this.AgentId = value; return this; } private static Object responseType = ContactShareResponse.class; public Object getResponseType() { return responseType; } } public static class ContactShareResponse { public ResponseStatus ResponseStatus = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public ContactShareResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }