/** * 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 Value */ export interface Value { /** * * @type {number} * @memberof Value */ value: number; /** * * @type {boolean} * @memberof Value */ isAboveDropOff?: boolean; } /** * Check if a given object implements the Value interface. */ export declare function instanceOfValue(value: object): value is Value; export declare function ValueFromJSON(json: any): Value; export declare function ValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): Value; export declare function ValueToJSON(value?: Value | null): any;