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

commonMain.com.lightspark.sdk.wallet.model.CreateTestModeInvoiceOutput.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("CreateTestModeInvoiceOutput")
data class CreateTestModeInvoiceOutput(
    @SerialName("create_test_mode_invoice_output_encoded_payment_request")
    val encodedPaymentRequest: String,
) {
    companion object {
        const val FRAGMENT = """
fragment CreateTestModeInvoiceOutputFragment on CreateTestModeInvoiceOutput {
    type: __typename
    create_test_mode_invoice_output_encoded_payment_request: encoded_payment_request
}"""
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy