/* Options: Date: 2025-05-05 02:42:46 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ListCrmContacts.* //ExcludeTypes: //InitializeCollections: False //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.* @Route(Path="/integrations/{integrationId}/contacts") open class ListCrmContacts : IReturn { open var integrationId:String? = null open var customerId:String? = null open var query:String? = null companion object { private val responseType = ListCrmContactsResponse::class.java } override fun getResponseType(): Any? = ListCrmContacts.responseType } open class ListCrmContactsResponse { open var contacts:ArrayList? = null } open class CrmContactInfo { open var id:String? = null open var displayName:String? = null }