Show / Hide Table of Contents

Class CredentialDelete

Deletes a credential from the XRP Ledger. Can be submitted by:

  • The issuer of the credential (to revoke it).
  • The subject of the credential (to un-accept it).
  • Any account, if the credential has expired. Requires the Credentials amendment.
Inheritance
object
TransactionRequest
CredentialDelete
Implements
ITransactionRequest
ICredentialDelete
ITransactionCommon
Inherited Members
TransactionRequest.NetworkID
TransactionRequest.Account
TransactionRequest.AccountTxnID
TransactionRequest.Fee
TransactionRequest.Flags
TransactionRequest.LastLedgerSequence
TransactionRequest.Memos
TransactionRequest.Sequence
TransactionRequest.SigningPublicKey
TransactionRequest.Signers
TransactionRequest.TransactionType
TransactionRequest.TransactionSignature
TransactionRequest.ToJson()
TransactionRequest.ToDictionary()
TransactionRequest.SourceTag
TransactionRequest.TicketSequence
Namespace: Xrpl.Models.Transactions
Assembly: Xrpl.dll
Syntax
public class CredentialDelete : TransactionRequest, ITransactionRequest, ICredentialDelete, ITransactionCommon

Constructors

| Edit this page View Source

CredentialDelete()

Declaration
public CredentialDelete()

Properties

| Edit this page View Source

CredentialType

The type of credential to delete, as a hex-encoded string.

Declaration
[JsonPropertyName("CredentialType")]
public string CredentialType { get; set; }
Property Value
Type Description
string
| Edit this page View Source

CredentialTypeValue

Decoded human-readable value of CredentialType (UTF-8).

Declaration
[JsonIgnore]
public string CredentialTypeValue { get; }
Property Value
Type Description
string
| Edit this page View Source

Issuer

(Optional) The issuer of the credential. If omitted, the Account (transaction sender) is assumed to be the issuer.

Declaration
[JsonPropertyName("Issuer")]
public string Issuer { get; set; }
Property Value
Type Description
string
| Edit this page View Source

Subject

(Optional) The subject of the credential. If omitted, the Account (transaction sender) is assumed to be the subject.

Declaration
[JsonPropertyName("Subject")]
public string Subject { get; set; }
Property Value
Type Description
string

Implements

ITransactionRequest
ICredentialDelete
ITransactionCommon

Extension Methods

BatchUtils.ToBatchTx(ITransactionRequest)
Utilities.Encode(TransactionRequest)
Utilities.EncodeForMultiSigning(TransactionRequest, string)
Utilities.EncodeForSigning(TransactionRequest)
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX