commonMain.com.lightspark.sdk.wallet.model.DeployWalletOutput.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wallet-sdk Show documentation
Show all versions of wallet-sdk Show documentation
The Lightspark Wallet SDK for Kotlin and Java.
The newest version!
// Copyright ©, 2023-present, Lightspark Group, Inc. - All Rights Reserved
@file:Suppress("ktlint:standard:max-line-length")
package com.lightspark.sdk.wallet.model
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
/**
*
*/
@Serializable
@SerialName("DeployWalletOutput")
data class DeployWalletOutput(
@SerialName("deploy_wallet_output_wallet")
val wallet: Wallet,
) {
companion object {
const val FRAGMENT = """
fragment DeployWalletOutputFragment on DeployWalletOutput {
type: __typename
deploy_wallet_output_wallet: wallet {
type: __typename
wallet_id: id
wallet_created_at: created_at
wallet_updated_at: updated_at
wallet_balances: balances {
type: __typename
balances_owned_balance: owned_balance {
type: __typename
currency_amount_original_value: original_value
currency_amount_original_unit: original_unit
currency_amount_preferred_currency_unit: preferred_currency_unit
currency_amount_preferred_currency_value_rounded: preferred_currency_value_rounded
currency_amount_preferred_currency_value_approx: preferred_currency_value_approx
}
balances_available_to_send_balance: available_to_send_balance {
type: __typename
currency_amount_original_value: original_value
currency_amount_original_unit: original_unit
currency_amount_preferred_currency_unit: preferred_currency_unit
currency_amount_preferred_currency_value_rounded: preferred_currency_value_rounded
currency_amount_preferred_currency_value_approx: preferred_currency_value_approx
}
balances_available_to_withdraw_balance: available_to_withdraw_balance {
type: __typename
currency_amount_original_value: original_value
currency_amount_original_unit: original_unit
currency_amount_preferred_currency_unit: preferred_currency_unit
currency_amount_preferred_currency_value_rounded: preferred_currency_value_rounded
currency_amount_preferred_currency_value_approx: preferred_currency_value_approx
}
}
wallet_status: status
}
}"""
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy