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

commonMain.com.lightspark.sdk.wallet.model.SendPaymentOutput.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

/**
 *
 * @param paymentId The payment that has been sent.
 */
@Serializable
@SerialName("SendPaymentOutput")
data class SendPaymentOutput(
    @SerialName("send_payment_output_payment")
    val paymentId: EntityId,
) {
    companion object {
        const val FRAGMENT = """
fragment SendPaymentOutputFragment on SendPaymentOutput {
    type: __typename
    send_payment_output_payment: payment {
        id
    }
}"""
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy