export interface GetBoardByFilterId {
  /**
   * The starting index of the returned boards. Base index: 0. See the 'Pagination' section at the top of this page for
   * more details.
   */
  startAt?: number;
  /**
   * The maximum number of boards to return per page. Default: 50. See the 'Pagination' section at the top of this page
   * for more details.
   */
  maxResults?: number;
  /** Filters results to boards that are relevant to a filter. Not supported for next-gen boards. */
  filterId: number;
}
