/** * metrics-sdk-admin * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 5.4.9 * * * 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 High */ export interface High { /** * * @type {number} * @memberof High */ length: number; } /** * Check if a given object implements the High interface. */ export declare function instanceOfHigh(value: object): value is High; export declare function HighFromJSON(json: any): High; export declare function HighFromJSONTyped(json: any, ignoreDiscriminator: boolean): High; export declare function HighToJSON(value?: High | null): any;