com.svix.kotlin.models.S3Config.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 accessKeyId
* @param bucket
* @param region
* @param secretAccessKey
*/
data class S3Config (
@Json(name = "accessKeyId")
val accessKeyId: kotlin.String,
@Json(name = "bucket")
val bucket: kotlin.String,
@Json(name = "region")
val region: kotlin.String,
@Json(name = "secretAccessKey")
val secretAccessKey: kotlin.String
)