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

org.stellar.walletsdk.Data.kt Maven / Gradle / Ivy

The newest version!
package org.stellar.walletsdk

import kotlinx.serialization.Serializable
import org.stellar.sdk.requests.RequestBuilder

/**
 * Account weights threshold
 *
 * @param low Low threshold weight
 * @param medium Medium threshold weight
 * @param high High threshold weight
 */
data class AccountThreshold(val low: Int, val medium: Int, val high: Int)

@Serializable
data class InteractiveFlowResponse(
  val id: String,
  val url: String,
  val type: String,
)

enum class Order(internal val builderEnum: RequestBuilder.Order) {
  ASC(RequestBuilder.Order.ASC),
  DESC(RequestBuilder.Order.DESC)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy