Body

data class Body(val goalCode: String? = null, val comment: String? = null, val replacementId: String? = null, val moreAvailable: String? = null)(source)

Represents the body of an issue credential message.

Constructors

Link copied to clipboard
constructor(goalCode: String? = null, comment: String? = null, replacementId: String? = null, moreAvailable: String? = null)

Properties

Link copied to clipboard
val comment: String? = null

Additional comment about the credential (optional).

Link copied to clipboard
@SerialName(value = "goal_code")
val goalCode: String? = null

The goal code associated with the credential (optional).

Link copied to clipboard
@SerialName(value = "more_available")
val moreAvailable: String? = null

Additional information about the availability of more credentials (optional).

Link copied to clipboard
@SerialName(value = "replacement_id")
val replacementId: String? = null

The ID of the credential being replaced (optional).

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Checks if the object is equal to the current Body object.

Link copied to clipboard
open override fun hashCode(): Int

Calculates the hash code for the hashCode() method of the Body class.