commonMain.com.algolia.client.model.ingestion.Destination.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.ingestion
import kotlinx.serialization.*
import kotlinx.serialization.json.*
/**
* Destinations are Algolia resources like indices or event streams.
*
* @param destinationID Universally unique identifier (UUID) of a destination resource.
* @param type
* @param name Descriptive name for the resource.
* @param input
* @param createdAt Date of creation in RFC 3339 format.
* @param updatedAt Date of last update in RFC 3339 format.
* @param authenticationID Universally unique identifier (UUID) of an authentication resource.
* @param transformationIDs
*/
@Serializable
public data class Destination(
/** Universally unique identifier (UUID) of a destination resource. */
@SerialName(value = "destinationID") val destinationID: String,
@SerialName(value = "type") val type: DestinationType,
/** Descriptive name for the resource. */
@SerialName(value = "name") val name: String,
@SerialName(value = "input") val input: DestinationInput,
/** Date of creation in RFC 3339 format. */
@SerialName(value = "createdAt") val createdAt: String,
/** Date of last update in RFC 3339 format. */
@SerialName(value = "updatedAt") val updatedAt: String? = null,
/** Universally unique identifier (UUID) of an authentication resource. */
@SerialName(value = "authenticationID") val authenticationID: String? = null,
@SerialName(value = "transformationIDs") val transformationIDs: List? = null,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy