/** * Permit.io API * Authorization as a service * * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { DataSourceEntry } from './data-source-entry'; /** * Static list of Data Source Entries returned to client. Answers this question for the client: from where should i get the full picture of data i need? (as opposed to incremental data updates) * @export * @interface DataSourceConfig */ export interface DataSourceConfig { /** * list of data sources and how to fetch from them * @type {Array} * @memberof DataSourceConfig */ entries: Array; }