/** * 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 GetAttributeMetricResponse */ export interface GetAttributeMetricResponse { /** * * @type {number} * @memberof GetAttributeMetricResponse */ audienceCount?: number; /** * * @type {number} * @memberof GetAttributeMetricResponse */ averageValue?: number; /** * * @type {number} * @memberof GetAttributeMetricResponse */ coverageRate?: number; /** * * @type {number} * @memberof GetAttributeMetricResponse */ maxValue?: number; /** * * @type {number} * @memberof GetAttributeMetricResponse */ minValue?: number; /** * * @type {number} * @memberof GetAttributeMetricResponse */ totalCount?: number; /** * Values that parsed as numbers, so the denominator for averages. Lower than * total_count when some values do not match the attribute's declared type. * @type {number} * @memberof GetAttributeMetricResponse */ usableCount?: number; } /** * Check if a given object implements the GetAttributeMetricResponse interface. */ export declare function instanceOfGetAttributeMetricResponse(value: object): value is GetAttributeMetricResponse; export declare function GetAttributeMetricResponseFromJSON(json: any): GetAttributeMetricResponse; export declare function GetAttributeMetricResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAttributeMetricResponse; export declare function GetAttributeMetricResponseToJSON(json: any): GetAttributeMetricResponse; export declare function GetAttributeMetricResponseToJSONTyped(value?: GetAttributeMetricResponse | null, ignoreDiscriminator?: boolean): any;