export interface GetFieldConfigurationSchemeMappings {
  /** The index of the first item to return in a page of results (page offset). */
  startAt?: number;
  /** The maximum number of items to return per page. */
  maxResults?: number;
  /**
   * The list of field configuration scheme IDs. To include multiple field configuration schemes separate IDs with
   * ampersand: `fieldConfigurationSchemeId=10000&fieldConfigurationSchemeId=10001`.
   */
  fieldConfigurationSchemeId?: number[];
}
