/* Options: Date: 2024-05-15 22:47:56 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetChatHistory.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route("/chathistory") open class GetChatHistory : IReturn { var channels:ArrayList? = null var afterId:Long? = null var take:Int? = null companion object { private val responseType = GetChatHistoryResponse::class.java } override fun getResponseType(): Any? = GetChatHistory.responseType } open class GetChatHistoryResponse { var results:ArrayList = ArrayList() var responseStatus:ResponseStatus? = null } open class ChatMessage { var id:Long? = null var channel:String? = null var fromUserId:String? = null var fromName:String? = null var displayName:String? = null var message:String? = null var userAuthId:String? = null @SerializedName("private") var Private:Boolean? = null }