com.svix.kotlin.models.BackgroundTaskOut.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.BackgroundTaskStatus
import com.svix.kotlin.models.BackgroundTaskType
import com.squareup.moshi.Json
/**
*
* @param data
* @param id
* @param status
* @param task
*/
data class BackgroundTaskOut (
@Json(name = "data")
val data: kotlin.Any,
@Json(name = "id")
val id: kotlin.String,
@Json(name = "status")
val status: BackgroundTaskStatus,
@Json(name = "task")
val task: BackgroundTaskType
)