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

commonMain.com.lightspark.sdk.wallet.graphql.CreateTestModeInvoice.kt Maven / Gradle / Ivy

The newest version!
package com.lightspark.sdk.wallet.graphql

import com.lightspark.sdk.wallet.model.CreateTestModeInvoiceOutput

const val CreateTestModeInvoice = """
mutation CreateTestModeInvoice(
    ${'$'}amount_msats: Long!
    ${'$'}memo: String
    ${'$'}invoice_type: InvoiceType
) {
    create_test_mode_invoice(input: {
        amount_msats: ${'$'}amount_msats
        memo: ${'$'}memo
        invoice_type: ${'$'}invoice_type
    }) {
        ...CreateTestModeInvoiceOutputFragment
    }
}

${CreateTestModeInvoiceOutput.FRAGMENT}
"""




© 2015 - 2024 Weber Informatics LLC | Privacy Policy