/* Options: Date: 2025-05-05 00:52:35 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: ListCrmContacts.* //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}/contacts") public static class ListCrmContacts implements IReturn { public String integrationId = null; public String customerId = null; public String query = null; public String getIntegrationId() { return integrationId; } public ListCrmContacts setIntegrationId(String value) { this.integrationId = value; return this; } public String getCustomerId() { return customerId; } public ListCrmContacts setCustomerId(String value) { this.customerId = value; return this; } public String getQuery() { return query; } public ListCrmContacts setQuery(String value) { this.query = value; return this; } private static Object responseType = ListCrmContactsResponse.class; public Object getResponseType() { return responseType; } } public static class ListCrmContactsResponse { public ArrayList contacts = null; public ArrayList getContacts() { return contacts; } public ListCrmContactsResponse setContacts(ArrayList value) { this.contacts = value; return this; } } public static class CrmContactInfo { public String id = null; public String displayName = null; public String getId() { return id; } public CrmContactInfo setId(String value) { this.id = value; return this; } public String getDisplayName() { return displayName; } public CrmContactInfo setDisplayName(String value) { this.displayName = value; return this; } } }