/* Options: Date: 2025-12-06 06:51: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: ContactCategoryRequest.* //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/ContactCategory/", Verbs="GET,PUT,OPTIONS") public static class ContactCategoryRequest implements IReturn { public UUID ContactGUID = null; public Integer CategoryId = null; public UUID getContactGUID() { return ContactGUID; } public ContactCategoryRequest setContactGUID(UUID value) { this.ContactGUID = value; return this; } public Integer getCategoryId() { return CategoryId; } public ContactCategoryRequest setCategoryId(Integer value) { this.CategoryId = value; return this; } private static Object responseType = ContactCategoryResponse.class; public Object getResponseType() { return responseType; } } public static class ContactCategoryResponse { public ResponseStatus ResponseStatus = null; public ArrayList ContactCategories = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public ContactCategoryResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getContactCategories() { return ContactCategories; } public ContactCategoryResponse setContactCategories(ArrayList value) { this.ContactCategories = value; return this; } } public static class ContactCategory { public Integer Id = null; public String Name = null; public Integer getId() { return Id; } public ContactCategory setId(Integer value) { this.Id = value; return this; } public String getName() { return Name; } public ContactCategory setName(String value) { this.Name = value; return this; } } }