/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 AttributeValueDataPoint */ export interface AttributeValueDataPoint { /** * * @type {string} * @memberof AttributeValueDataPoint */ label?: string; /** * * @type {number} * @memberof AttributeValueDataPoint */ percentage?: number; /** * * @type {number} * @memberof AttributeValueDataPoint */ visitorCount?: number; } /** * Check if a given object implements the AttributeValueDataPoint interface. */ export declare function instanceOfAttributeValueDataPoint(value: object): value is AttributeValueDataPoint; export declare function AttributeValueDataPointFromJSON(json: any): AttributeValueDataPoint; export declare function AttributeValueDataPointFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttributeValueDataPoint; export declare function AttributeValueDataPointToJSON(json: any): AttributeValueDataPoint; export declare function AttributeValueDataPointToJSONTyped(value?: AttributeValueDataPoint | null, ignoreDiscriminator?: boolean): any;