/* Options: Date: 2025-05-05 00:46:12 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ListCrmCustomers.* //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="/integrations/{integrationId}/customers") public static class ListCrmCustomers implements IReturn { public String integrationId = null; public String query = null; public String getIntegrationId() { return integrationId; } public ListCrmCustomers setIntegrationId(String value) { this.integrationId = value; return this; } public String getQuery() { return query; } public ListCrmCustomers setQuery(String value) { this.query = value; return this; } private static Object responseType = ListCrmCustomersResponse.class; public Object getResponseType() { return responseType; } } public static class ListCrmCustomersResponse { public ArrayList customers = null; public ArrayList getCustomers() { return customers; } public ListCrmCustomersResponse setCustomers(ArrayList value) { this.customers = value; return this; } } public static class CrmCustomerInfo { public String id = null; public String displayName = null; public String getId() { return id; } public CrmCustomerInfo setId(String value) { this.id = value; return this; } public String getDisplayName() { return displayName; } public CrmCustomerInfo setDisplayName(String value) { this.displayName = value; return this; } } }