com.svix.kotlin.models.MessageAttemptRecoveredEventData.kt Maven / Gradle / Ivy
/**
* Svix API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.1.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.svix.kotlin.models
import com.svix.kotlin.models.MessageAttemptFailedData
import com.squareup.moshi.Json
/**
* Sent when a message delivery has failed (all of the retry attempts have been exhausted) as a \"message.attempt.exhausted\" type or after it's failed four times as a \"message.attempt.failing\" event.
* @param appId The app's ID
* @param endpointId The ep's ID
* @param lastAttempt
* @param msgId The msg's ID
* @param appUid The app's UID
* @param msgEventId The msg's UID
*/
data class MessageAttemptRecoveredEventData (
/* The app's ID */
@Json(name = "appId")
val appId: kotlin.String,
/* The ep's ID */
@Json(name = "endpointId")
val endpointId: kotlin.String,
@Json(name = "lastAttempt")
val lastAttempt: MessageAttemptFailedData,
/* The msg's ID */
@Json(name = "msgId")
val msgId: kotlin.String,
/* The app's UID */
@Json(name = "appUid")
val appUid: kotlin.String? = null,
/* The msg's UID */
@Json(name = "msgEventId")
val msgEventId: kotlin.String? = null
)