/* Options: Date: 2025-12-06 05:49:17 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: CustomerDropdownRequest.* //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/Project/CustomerDropdown", Verbs="GET,OPTIONS") public static class CustomerDropdownRequest implements IReturn { private static Object responseType = CustomerDropdownResponse.class; public Object getResponseType() { return responseType; } } public static class CustomerDropdownResponse { public ResponseStatus ResponseStatus = null; public ArrayList Customers = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public CustomerDropdownResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getCustomers() { return Customers; } public CustomerDropdownResponse setCustomers(ArrayList value) { this.Customers = value; return this; } } public static class CustomerDD { public String CustomerId = null; public String CustomerName = null; public String getCustomerId() { return CustomerId; } public CustomerDD setCustomerId(String value) { this.CustomerId = value; return this; } public String getCustomerName() { return CustomerName; } public CustomerDD setCustomerName(String value) { this.CustomerName = value; return this; } } }