/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.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 { InlineResponse2002AllowedPrograms } from './InlineResponse2002AllowedPrograms'; /** * * @export * @interface InlineResponse2002 */ export interface InlineResponse2002 { /** * * @type {Array} * @memberof InlineResponse2002 */ allowedPrograms?: Array | null; } export declare function InlineResponse2002FromJSON(json: any): InlineResponse2002; export declare function InlineResponse2002FromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse2002; export declare function InlineResponse2002ToJSON(value?: InlineResponse2002 | null): any;