All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.algolia.client.model.ingestion.SourceUpdateInput.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 com.algolia.client.exception.AlgoliaClientException
import com.algolia.client.extensions.internal.*
import kotlinx.serialization.*
import kotlinx.serialization.builtins.*
import kotlinx.serialization.descriptors.*
import kotlinx.serialization.encoding.*
import kotlinx.serialization.json.*

/**
 * SourceUpdateInput
 *
 * Implementations:
 * - [SourceBigQuery]
 * - [SourceCSV]
 * - [SourceGA4BigQueryExport]
 * - [SourceJSON]
 * - [SourceUpdateCommercetools]
 * - [SourceUpdateDocker]
 * - [SourceUpdateShopify]
 */
@Serializable(SourceUpdateInputSerializer::class)
public sealed interface SourceUpdateInput {

  public companion object {
  }
}

internal class SourceUpdateInputSerializer : JsonContentPolymorphicSerializer(SourceUpdateInput::class) {
  override fun selectDeserializer(element: JsonElement): DeserializationStrategy {
    return when {
      element is JsonObject && element.containsKey("projectID") && element.containsKey("datasetID") && element.containsKey("tablePrefix") -> SourceGA4BigQueryExport.serializer()
      element is JsonObject && element.containsKey("projectID") -> SourceBigQuery.serializer()
      element is JsonObject && element.containsKey("configuration") -> SourceUpdateDocker.serializer()
      element is JsonObject -> SourceUpdateCommercetools.serializer()
      element is JsonObject -> SourceJSON.serializer()
      element is JsonObject -> SourceCSV.serializer()
      element is JsonObject -> SourceUpdateShopify.serializer()
      else -> throw AlgoliaClientException("Failed to deserialize json element: $element")
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy