/** * 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. */ import type { AttributeValueDataPoint } from './AttributeValueDataPoint'; /** * * @export * @interface GetAttributeDistributionResponse */ export interface GetAttributeDistributionResponse { /** * * @type {Array} * @memberof GetAttributeDistributionResponse */ data?: Array; /** * * @type {number} * @memberof GetAttributeDistributionResponse */ total?: number; } /** * Check if a given object implements the GetAttributeDistributionResponse interface. */ export declare function instanceOfGetAttributeDistributionResponse(value: object): value is GetAttributeDistributionResponse; export declare function GetAttributeDistributionResponseFromJSON(json: any): GetAttributeDistributionResponse; export declare function GetAttributeDistributionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAttributeDistributionResponse; export declare function GetAttributeDistributionResponseToJSON(json: any): GetAttributeDistributionResponse; export declare function GetAttributeDistributionResponseToJSONTyped(value?: GetAttributeDistributionResponse | null, ignoreDiscriminator?: boolean): any;