xrpl
    Preparing search index...

    Interface Delegate

    This object represents a set of permissions that an account has delegated to another account.

    interface Delegate {
        Account: string;
        Authorize: string;
        Flags: 0;
        index: string;
        LedgerEntryType: "Delegate";
        OwnerNode: string;
        Permissions: Permission[];
        PreviousTxnID: string;
        PreviousTxnLgrSeq: number;
    }

    Hierarchy

    • BaseLedgerEntry
    • HasPreviousTxnID
      • Delegate
    Index

    Properties

    Account: string

    The account that wants to authorize another account.

    Authorize: string

    The authorized account.

    Flags: 0

    A bit-map of boolean flags. No flags are defined for the Delegate object type, so this value is always 0.

    index: string
    LedgerEntryType: "Delegate"
    OwnerNode: string

    A hint indicating which page of the sender's owner directory links to this object, in case the directory consists of multiple pages.

    Permissions: Permission[]

    The transaction permissions that the account has access to.

    PreviousTxnID: string

    The identifying hash of the transaction that most recently modified this object.

    PreviousTxnLgrSeq: number

    The index of the ledger that contains the transaction that most recently modified this object.