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

commonMain.com.algolia.client.model.abtesting.Currency.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.abtesting

import kotlinx.serialization.*
import kotlinx.serialization.json.*

/**
 * Currency
 *
 * @param currency Currency code.
 * @param revenue Revenue for this currency.
 * @param mean Mean for this currency.
 * @param standardDeviation Standard deviation for this currency.
 */
@Serializable
public data class Currency(

  /** Currency code. */
  @SerialName(value = "currency") val currency: String? = null,

  /** Revenue for this currency. */
  @SerialName(value = "revenue") val revenue: Double? = null,

  /** Mean for this currency. */
  @SerialName(value = "mean") val mean: Double? = null,

  /** Standard deviation for this currency. */
  @SerialName(value = "standardDeviation") val standardDeviation: Double? = null,
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy