com.svix.kotlin.models.ApplicationOut.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 createdAt
* @param id The app's ID
* @param metadata
* @param name
* @param updatedAt
* @param rateLimit
* @param uid The app's UID
*/
data class ApplicationOut (
@Json(name = "createdAt")
val createdAt: java.time.OffsetDateTime,
/* The app's ID */
@Json(name = "id")
val id: kotlin.String,
@Json(name = "metadata")
val metadata: kotlin.collections.Map,
@Json(name = "name")
val name: kotlin.String,
@Json(name = "updatedAt")
val updatedAt: java.time.OffsetDateTime,
@Json(name = "rateLimit")
val rateLimit: kotlin.Int? = null,
/* The app's UID */
@Json(name = "uid")
val uid: kotlin.String? = null
)