/* Options: Date: 2025-12-06 05:21:35 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sbbet.ath.cx //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetUserNotifications.* //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="/qry/users/notifications") open class GetUserNotifications : IReturn { open var id:String? = null companion object { private val responseType = UserNotifications::class.java } override fun getResponseType(): Any? = GetUserNotifications.responseType } open class UserNotifications { open var id:String? = null open var n:Int? = null open var s:Int? = null open var i:Int? = null open var w:Int? = null open var e:Int? = null open var notifications:HashMap? = null } open class RecordDictionary : HashMap() { } open class UserNotification { open var id:String? = null open var notification:Notification? = null open var dispatchedAt:Date? = null } enum class Severity(val value:Int) { @SerializedName("0") Success(0), @SerializedName("1") Info(1), @SerializedName("2") Warning(2), @SerializedName("3") Error(3), } open class Notification { open var severity:Severity? = null @SerializedName("type") open var Type:NotificationType? = null @SerializedName("data") open var Data:RecordDictionary? = null } enum class NotificationType(val value:Int) { @SerializedName("0") Default(0), @SerializedName("1") SlipDeliveryConfirmationRequest(1), @SerializedName("2") SlipDeliveryIssueResolved(2), }