/** * 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. */ /** * GetAttributeMetricRequest retrieves aggregate statistics for one visitor * attribute, for example the average rating. * @export * @interface GetAttributeMetricRequest */ export interface GetAttributeMetricRequest { /** * * @type {Date} * @memberof GetAttributeMetricRequest */ endDate?: Date; /** * * @type {string} * @memberof GetAttributeMetricRequest */ key?: string; /** * Optional link filter (UUID). Attributes belong to the visitor rather than * to a link, so this filters the audience: visitors who interacted with the * link, whatever set the attribute. * @type {string} * @memberof GetAttributeMetricRequest */ linkId?: string; /** * * @type {Date} * @memberof GetAttributeMetricRequest */ startDate?: Date; } /** * Check if a given object implements the GetAttributeMetricRequest interface. */ export declare function instanceOfGetAttributeMetricRequest(value: object): value is GetAttributeMetricRequest; export declare function GetAttributeMetricRequestFromJSON(json: any): GetAttributeMetricRequest; export declare function GetAttributeMetricRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAttributeMetricRequest; export declare function GetAttributeMetricRequestToJSON(json: any): GetAttributeMetricRequest; export declare function GetAttributeMetricRequestToJSONTyped(value?: GetAttributeMetricRequest | null, ignoreDiscriminator?: boolean): any;