/** * 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 { SdkViewSection } from './SdkViewSection'; import { SdkViewType } from './SdkViewType'; /** * Configs used to create the view in the sdk. * @export * @interface SdkView */ export interface SdkView { /** * * @type {SdkViewType} * @memberof SdkView */ type: SdkViewType; /** * The sections which will be used create the view in the sdk. The sections will be displayed in the order that they appear in the array. * @type {Array} * @memberof SdkView */ sections?: Array; } export declare function SdkViewFromJSON(json: any): SdkView; export declare function SdkViewFromJSONTyped(json: any, ignoreDiscriminator: boolean): SdkView; export declare function SdkViewToJSON(value?: SdkView | null): any;