BoardgameResponseData

public struct BoardgameResponseData : Content

Wraps an array of BoardgameData with info needed to paginate the result set.

Returned by:

  • GET /api/v3/boardgames
  • How many games are in the result set. If the request included a filter, this value will contain the total number of games that match the filter.

    Declaration

    Swift

    var totalGames: Int
  • The initial offset into the resultSet array. 0 based.

    Declaration

    Swift

    var start: Int
  • How many results are to be returned.

    Declaration

    Swift

    var limit: Int
  • Array of boardgames.

    Declaration

    Swift

    var gameArray: [BoardgameData]