
commonMain.com.algolia.client.model.search.BaseGetApiKeyResponse.kt Maven / Gradle / Ivy
/** Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. */
package com.algolia.client.model.search
import kotlinx.serialization.*
import kotlinx.serialization.json.*
/**
* BaseGetApiKeyResponse
*
* @param createdAt Timestamp when the object was created, in milliseconds since the Unix epoch.
* @param `value` API key.
*/
@Serializable
public data class BaseGetApiKeyResponse(
/** Timestamp when the object was created, in milliseconds since the Unix epoch. */
@SerialName(value = "createdAt") val createdAt: Long,
/** API key. */
@SerialName(value = "value") val `value`: String? = null,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy