LimitExceeded

@Serializable
@SerialName(value = "M_LIMIT_EXCEEDED")
data class LimitExceeded(val error: String, val retryAfterMillis: Long? = null) : ErrorResponse

Too many requests have been sent in a short period of time. Wait a while then try again.

Constructors

Link copied to clipboard
constructor(error: String, retryAfterMillis: Long? = null)

Properties

Link copied to clipboard
open override val error: String
Link copied to clipboard
@SerialName(value = "retry_after_ms")
val retryAfterMillis: Long?