Type Alias ResponseLinks

Resource links included in paginated responses

type ResponseLinks = {
    first: { href?: string };
    last: { href?: string };
    next: { href?: string };
    prev: { href?: string };
    self: { href?: string };
}
Index

Properties

Properties

first: { href?: string }

Type declaration

  • Optionalhref?: string

    Link to the first set of responses from offset 0 to count `limit``

last: { href?: string }

Type declaration

  • Optionalhref?: string

    Link to the last set of responses from limit minus offset to limit

next: { href?: string }

Type declaration

  • Optionalhref?: string

    Link to the next set of responses

prev: { href?: string }

Type declaration

  • Optionalhref?: string

    Link to the previous set of responses

self: { href?: string }

Type declaration

  • Optionalhref?: string

    Link to the current set of responses