com.svix.kotlin.models.EnvironmentIn.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.EventTypeIn
import com.svix.kotlin.models.SettingsIn
import com.svix.kotlin.models.TemplateIn
import com.squareup.moshi.Json
/**
*
* @param createdAt
* @param version
* @param eventTypes
* @param settings
* @param transformationTemplates
*/
data class EnvironmentIn (
@Json(name = "createdAt")
val createdAt: java.time.OffsetDateTime,
@Json(name = "version")
val version: kotlin.Int,
@Json(name = "eventTypes")
val eventTypes: kotlin.collections.List? = null,
@Json(name = "settings")
val settings: SettingsIn? = null,
@Json(name = "transformationTemplates")
val transformationTemplates: kotlin.collections.List? = null
)