com.svix.kotlin.models.EndpointUpdate.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 url
* @param channels List of message channels this endpoint listens to (omit for all)
* @param description
* @param disabled
* @param filterTypes
* @param metadata
* @param rateLimit
* @param uid Optional unique identifier for the endpoint
* @param version
*/
data class EndpointUpdate (
@Json(name = "url")
val url: java.net.URI,
/* List of message channels this endpoint listens to (omit for all) */
@Json(name = "channels")
val channels: kotlin.collections.Set? = null,
@Json(name = "description")
val description: kotlin.String? = null,
@Json(name = "disabled")
val disabled: kotlin.Boolean? = null,
@Json(name = "filterTypes")
val filterTypes: kotlin.collections.Set? = null,
@Json(name = "metadata")
val metadata: kotlin.collections.Map? = null,
@Json(name = "rateLimit")
val rateLimit: kotlin.Int? = null,
/* Optional unique identifier for the endpoint */
@Json(name = "uid")
val uid: kotlin.String? = null,
@Json(name = "version")
@Deprecated(message = "This property is deprecated.")
val version: kotlin.Int? = null
)