com.svix.kotlin.models.EndpointTransformationSimulateIn.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.squareup.moshi.Json
/**
*
* @param code
* @param eventType The event type's name
* @param payload
* @param channels
*/
data class EndpointTransformationSimulateIn (
@Json(name = "code")
val code: kotlin.String,
/* The event type's name */
@Json(name = "eventType")
val eventType: kotlin.String,
@Json(name = "payload")
val payload: kotlin.Any,
@Json(name = "channels")
val channels: kotlin.collections.Set? = null
)