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

commonMain.com.lightspark.sdk.wallet.model.FundWalletOutput.kt Maven / Gradle / Ivy

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("FundWalletOutput")
data class FundWalletOutput(
    @SerialName("fund_wallet_output_amount")
    val amount: CurrencyAmount,
) {
    companion object {
        const val FRAGMENT = """
fragment FundWalletOutputFragment on FundWalletOutput {
    type: __typename
    fund_wallet_output_amount: amount {
        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
    }
}"""
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy