Interface GetSortedAex9TokensOptionalParams

Optional parameters.

interface GetSortedAex9TokensOptionalParams {
    by?: string;
    direction?: string;
    exact?: string;
    limit?: number;
    prefix?: string;
}

Hierarchy

  • OperationOptions
    • GetSortedAex9TokensOptionalParams

Properties

by?: string

meta info field used on sorting

direction?: string

Sorts results in forwards or backwards direction

exact?: string

Gets AEX9 tokens with exact name or symbol, this is decided by the 'by' field. If it's name, it will get tokens with exact name, if it's symbol, it will get tokens with exact symbol.

limit?: number

Limit paginated resources (max 100)

prefix?: string

Sorts by name or symbol prefix, this is decided by the 'by' field. If it's name, it will sort by name prefix, if it's symbol, it will sort by symbol prefix.