com.svix.kotlin.models.EndpointUpdatedEventData.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
/**
* Sent when an endpoint is created, updated, or deleted
* @param appId The app's ID
* @param endpointId The ep's ID
* @param appUid The app's UID
* @param endpointUid The ep's UID
*/
data class EndpointUpdatedEventData (
/* The app's ID */
@Json(name = "appId")
val appId: kotlin.String,
/* The ep's ID */
@Json(name = "endpointId")
val endpointId: kotlin.String,
/* The app's UID */
@Json(name = "appUid")
val appUid: kotlin.String? = null,
/* The ep's UID */
@Json(name = "endpointUid")
val endpointUid: kotlin.String? = null
)