import { SourcesPropertyInner } from './sources-property-inner'; /** * SourceResponse DTO class. * @export * @interface SourceResponse */ export interface SourceResponse { /** * * @type {string} * @memberof SourceResponse */ 'message': string; /** * * @type {Array} * @memberof SourceResponse */ 'sources': Array; /** * * @type {object} * @memberof SourceResponse */ 'user_input': object; }