commonMain.com.xebia.functional.openai.generated.model.ProjectServiceAccountApiKey.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xef-openai-client Show documentation
Show all versions of xef-openai-client Show documentation
Building applications with LLMs through composability in Kotlin
/**
*
* Please note:
* This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Do not edit this file manually.
*
*/
@file:Suppress(
"ArrayInDataClass",
"EnumEntryName",
"RemoveRedundantQualifierName",
"UnusedImport"
)
package com.xebia.functional.openai.generated.model
import kotlinx.serialization.Serializable
import kotlinx.serialization.SerialName
import kotlinx.serialization.Contextual
import kotlin.js.JsName
import kotlinx.serialization.json.*
/**
*
*
* @param `object` The object type, which is always `organization.project.service_account.api_key`
* @param `value`
* @param name
* @param createdAt
* @param id
*/
@Serializable
data class ProjectServiceAccountApiKey (
/* The object type, which is always `organization.project.service_account.api_key` */
@SerialName(value = "object") val `object`: ProjectServiceAccountApiKey.`Object`,
@SerialName(value = "value") val `value`: kotlin.String,
@SerialName(value = "name") val name: kotlin.String,
@SerialName(value = "created_at") val createdAt: kotlin.Int,
@SerialName(value = "id") val id: kotlin.String
) {
/**
* The object type, which is always `organization.project.service_account.api_key`
*
* Values: organization_project_service_account_api_key
*/
@Serializable
enum class `Object`(val value: kotlin.String) {
@SerialName(value = "organization.project.service_account.api_key") organization_project_service_account_api_key("organization.project.service_account.api_key");
}
}