Sep30Response Signer
Represents a signer in a SEP-30 account recovery response.
Each signer corresponds to a Stellar public key that the recovery server controls and can use to sign recovery transactions after successful identity authentication. Signers are ordered from most recently added to least recently added.
Usage
val json = Json.parseToJsonElement(responseBody).jsonObject
val signer = Sep30ResponseSigner.fromJson(json)
println("Signer key: ${signer.key}")Content copied to clipboard
Example JSON
{ "key": "GADF..." }Content copied to clipboard