Sep24FeeDetail

@Serializable
data class Sep24FeeDetail(val name: String, val amount: String, val description: String? = null)

Individual fee component in a fee breakdown.

Constructors

Link copied to clipboard
constructor(name: String, amount: String, description: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "amount")
val amount: String

Amount of this fee component

Link copied to clipboard
@SerialName(value = "description")
val description: String?

Optional human-readable description

Link copied to clipboard
@SerialName(value = "name")
val name: String

Name of the fee component (e.g., "Service fee", "Network fee")