com.svix.kotlin.models.EndpointPatch.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 channels
* @param description
* @param disabled
* @param filterTypes
* @param metadata
* @param rateLimit
* @param secret The endpoint's verification secret. If `null` is passed, a secret is automatically generated. Format: `base64` encoded random bytes optionally prefixed with `whsec_`. Recommended size: 24.
* @param uid The ep's UID
* @param url
* @param version
*/
data class EndpointPatch (
@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,
/* The endpoint's verification secret. If `null` is passed, a secret is automatically generated. Format: `base64` encoded random bytes optionally prefixed with `whsec_`. Recommended size: 24. */
@Json(name = "secret")
val secret: kotlin.String? = null,
/* The ep's UID */
@Json(name = "uid")
val uid: kotlin.String? = null,
@Json(name = "url")
val url: java.net.URI? = null,
@Json(name = "version")
@Deprecated(message = "This property is deprecated.")
val version: kotlin.Int? = null
)