com.svix.kotlin.models.GoogleCloudStorageConfig.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
/**
* Configuration for a Google Cloud Storage sink. Write stream events into the named bucket using the supplied Google Cloud credentials.
* @param bucket
* @param credentials Google Cloud Credentials JSON Object as a string.
*/
data class GoogleCloudStorageConfig (
@Json(name = "bucket")
val bucket: kotlin.String,
/* Google Cloud Credentials JSON Object as a string. */
@Json(name = "credentials")
val credentials: kotlin.String
)