CreateApiKeyResponse

@Serializable
data class CreateApiKeyResponse(val apiKeyId: String, val apiKey: String)

Response from creating an API key, containing the key ID and secret value.

Constructors

Link copied to clipboard
constructor(apiKeyId: String, apiKey: String)

Properties

Link copied to clipboard
@SerialName(value = "api_key")
val apiKey: String
Link copied to clipboard
@SerialName(value = "api_key_id")
val apiKeyId: String