/* Options: Date: 2026-03-07 05:17:46 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CogitoWebhookRequest.* //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.* @Route(Path="/nodes/cogito/webhook/{accountId}") open class CogitoWebhookRequest { open var accountId:String? = null @SerializedName("type") open var Type:String? = null open var phoneNumbers:ArrayList? = null open var role:String? = null open var content:String? = null }