Interface LegsPage

Represents a page of legs

interface LegsPage {
    legs: LegJS[];
    get nextCursor(): Nullable<string>;
    get previousCursor(): Nullable<string>;
}

Properties

Accessors

Properties

legs: LegJS[]

The legs in the page

Accessors

  • get nextCursor(): Nullable<string>
  • The cursor to fetch the next page

    Returns Nullable<string>

  • get previousCursor(): Nullable<string>
  • The cursor to fetch the previous page

    Returns Nullable<string>