Class WalletDescriptor

Descriptor of a wallet e.g name, icon, etc

Hierarchy

  • WalletDescriptor

Constructors

Properties

Accessors

Methods

Constructors

  • Create a new instance of the WalletDescriptor class

    Parameters

    • Optional _name: string

      The name of wallet.

    • Optional _icon: string

      The icon of wallet.

    • Optional _description: string

      The description of wallet.

    Returns WalletDescriptor

Properties

_description?: string

The description of wallet.

_icon?: string

The icon of wallet.

_name?: string

The name of wallet.

Accessors

  • get description(): string
  • Get the description of wallet

    Returns string

    The description of wallet.

  • set description(description): void
  • It sets the description of wallet.

    Parameters

    • description: string

      The description of wallet.

    Returns void

  • get icon(): string
  • Get the icon of wallet

    Returns string

    The icon of wallet.

  • set icon(icon): void
  • It sets the icon of wallet.

    Parameters

    • icon: string

      The icon of wallet.

    Returns void

  • get name(): string
  • Get the name of wallet

    Returns string

    The name of wallet.

  • set name(name): void
  • It sets the name of wallet.

    Parameters

    • name: string

      The name of wallet.

    Returns void

Methods

  • Override the JSOn stringify behavior to have properly properties

    Returns {
        description: string;
        icon: string;
        name: string;
    }

    • description: string
    • icon: string
    • name: string

Generated using TypeDoc