/* Options: Date: 2025-12-06 07:47:08 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: ContactTypeRequest.* //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/ContactType", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/ContactType/{ContactTypeId}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class ContactTypeRequest implements IReturn { public ArrayList ContactType = new ArrayList(); public ArrayList getContactType() { return ContactType; } public ContactTypeRequest setContactType(ArrayList value) { this.ContactType = value; return this; } private static Object responseType = ContactTypeResponse.class; public Object getResponseType() { return responseType; } } public static class ContactTypeResponse { public ResponseStatus ResponseStatus = null; public ArrayList ContactType = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public ContactTypeResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getContactType() { return ContactType; } public ContactTypeResponse setContactType(ArrayList value) { this.ContactType = value; return this; } } public static class ContactType { public Integer ContactTypeId = null; public String ContactTypeName = null; public Integer getContactTypeId() { return ContactTypeId; } public ContactType setContactTypeId(Integer value) { this.ContactTypeId = value; return this; } public String getContactTypeName() { return ContactTypeName; } public ContactType setContactTypeName(String value) { this.ContactTypeName = value; return this; } } }