CallEvent
data class CallEvent( @Json(name = "description") val description: String, @Json(name = "end_timestamp") val endTimestamp: Int, @Json(name = "internal") val internal: Boolean, @Json(name = "kind") val kind: String, @Json(name = "severity") val severity: Int, @Json(name = "timestamp") val timestamp: Int, @Json(name = "type") val type: String, @Json(name = "category") val category: String? = null, @Json(name = "component") val component: String? = null, @Json(name = "issue_tags") val issueTags: List<String>? = null)
Constructors
Link copied to clipboard
constructor( @Json(name = "description") description: String, @Json(name = "end_timestamp") endTimestamp: Int, @Json(name = "internal") internal: Boolean, @Json(name = "kind") kind: String, @Json(name = "severity") severity: Int, @Json(name = "timestamp") timestamp: Int, @Json(name = "type") type: String, @Json(name = "category") category: String? = null, @Json(name = "component") component: String? = null, @Json(name = "issue_tags") issueTags: List<String>? = null)