com.svix.kotlin.models.EndpointMtlsConfigIn.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 identity A PEM encoded private key and X509 certificate to identify the webhook sender.
* @param serverCaCert A PEM encoded X509 certificate used to verify the webhook receiver's certificate.
*/
data class EndpointMtlsConfigIn (
/* A PEM encoded private key and X509 certificate to identify the webhook sender. */
@Json(name = "identity")
val identity: kotlin.String,
/* A PEM encoded X509 certificate used to verify the webhook receiver's certificate. */
@Json(name = "serverCaCert")
val serverCaCert: kotlin.String? = null
)