//core/com.kustomer.core.models.handoff/HandoffMessage
@JsonClass(generateAdapter = true)
data class HandoffMessage(@Json(name = "date")val date: String, @Json(name = "direction")val direction: HandoffMessageDirection, @Json(name = "body")val body: String)
Represents a message in a handoff request.
androidJvm
| date | ISO 8601 timestamp when the message was sent |
| direction | Message direction (inbound from customer, outbound from agent/system) |
| body | Message body content (max 10240 characters) |
| HandoffMessage | [androidJvm] constructor(@Json(name = "date")date: String, @Json(name = "direction")direction: HandoffMessageDirection, @Json(name = "body")body: String) |
| Name | Summary |
|---|---|
| body | [androidJvm] val body: String |
| date | [androidJvm] val date: String |
| direction | [androidJvm] val direction: HandoffMessageDirection |