/* Options: Date: 2025-05-04 23:17:24 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: GetMyContacts.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* /** * Gets the contacts associated with the authenticated user */ @Route(Path="/app/contacts", Verbs="GET") @Api(Description="Gets the contacts associated with the authenticated user") open class GetMyContacts : IReturn { companion object { private val responseType = GetMyContactsResponse::class.java } override fun getResponseType(): Any? = GetMyContacts.responseType } open class GetMyContactsResponse { open var contacts:ArrayList? = null } open class AppContact { open var displayName:String? = null open var address:String? = null @SerializedName("type") open var Type:AppContactTypes? = null open var customerName:String? = null open var canCall:Boolean? = null open var canChat:Boolean? = null } enum class AppContactTypes { User, Team, Contact, }