/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ListTopics */ export interface ListTopics { /** * * @type {Array} * @memberof ListTopics */ topics: Array; } export declare function ListTopicsFromJSON(json: any): ListTopics; export declare function ListTopicsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListTopics; export declare function ListTopicsToJSON(value?: ListTopics | null): any;