/** * 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 AttributeValueEntry */ export interface AttributeValueEntry { /** * * @type {Date} * @memberof AttributeValueEntry */ recordedAt?: Date; /** * * @type {string} * @memberof AttributeValueEntry */ value?: string; } /** * Check if a given object implements the AttributeValueEntry interface. */ export declare function instanceOfAttributeValueEntry(value: object): value is AttributeValueEntry; export declare function AttributeValueEntryFromJSON(json: any): AttributeValueEntry; export declare function AttributeValueEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttributeValueEntry; export declare function AttributeValueEntryToJSON(json: any): AttributeValueEntry; export declare function AttributeValueEntryToJSONTyped(value?: AttributeValueEntry | null, ignoreDiscriminator?: boolean): any;