/** * 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 { AttributeValueEntry } from './AttributeValueEntry'; /** * * @export * @interface GetAttributeValuesResponse */ export interface GetAttributeValuesResponse { /** * * @type {Array} * @memberof GetAttributeValuesResponse */ data?: Array; /** * * @type {number} * @memberof GetAttributeValuesResponse */ total?: number; } /** * Check if a given object implements the GetAttributeValuesResponse interface. */ export declare function instanceOfGetAttributeValuesResponse(value: object): value is GetAttributeValuesResponse; export declare function GetAttributeValuesResponseFromJSON(json: any): GetAttributeValuesResponse; export declare function GetAttributeValuesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAttributeValuesResponse; export declare function GetAttributeValuesResponseToJSON(json: any): GetAttributeValuesResponse; export declare function GetAttributeValuesResponseToJSONTyped(value?: GetAttributeValuesResponse | null, ignoreDiscriminator?: boolean): any;