commonMain.com.lightspark.sdk.wallet.model.TransactionStatus.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 com.lightspark.sdk.core.util.EnumSerializer
import kotlinx.serialization.Serializable
/** This is an enum of the potential statuses a transaction associated with your Lightspark Node can take. **/
@Serializable(with = TransactionStatusSerializer::class)
enum class TransactionStatus(val rawValue: String) {
/** Transaction succeeded.. **/
SUCCESS("SUCCESS"),
/** Transaction failed. **/
FAILED("FAILED"),
/** Transaction has been initiated and is currently in-flight. **/
PENDING("PENDING"),
/** For transaction type PAYMENT_REQUEST only. No payments have been made to a payment request. **/
NOT_STARTED("NOT_STARTED"),
/** For transaction type PAYMENT_REQUEST only. A payment request has expired. **/
EXPIRED("EXPIRED"),
/** For transaction type PAYMENT_REQUEST only. **/
CANCELLED("CANCELLED"),
/**
* This is an enum value that represents values that could be added in the future.
* Clients should support unknown values as more of them could be added without notice.
*/
FUTURE_VALUE("FUTURE_VALUE"),
}
object TransactionStatusSerializer :
EnumSerializer(
TransactionStatus::class,
{ rawValue ->
TransactionStatus.values().firstOrNull { it.rawValue == rawValue } ?: TransactionStatus.FUTURE_VALUE
},
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy