/* tslint:disable */ /* eslint-disable */ /** * EMIL CommissionService * The EMIL CommissionService API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { CommissionCandidateClass } from './commission-candidate-class'; /** * * @export * @interface ListCommissionCandidatesResponseClass */ export interface ListCommissionCandidatesResponseClass { /** * items * @type {Array} * @memberof ListCommissionCandidatesResponseClass */ 'items': Array; /** * The token for the next page of results * @type {string} * @memberof ListCommissionCandidatesResponseClass */ 'nextPageToken': string; /** * The number of items per page * @type {number} * @memberof ListCommissionCandidatesResponseClass */ 'itemsPerPage': number; /** * The total number of items in the collection * @type {number} * @memberof ListCommissionCandidatesResponseClass */ 'totalItems': number; }