/** * 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. */ /** * GetAttributeValuesRequest lists individual values of one attribute, for free * text such as comments where a distribution would be meaningless. * @export * @interface GetAttributeValuesRequest */ export interface GetAttributeValuesRequest { /** * * @type {Date} * @memberof GetAttributeValuesRequest */ endDate?: Date; /** * * @type {string} * @memberof GetAttributeValuesRequest */ key?: string; /** * * @type {number} * @memberof GetAttributeValuesRequest */ limit?: number; /** * * @type {string} * @memberof GetAttributeValuesRequest */ linkId?: string; /** * * @type {Date} * @memberof GetAttributeValuesRequest */ startDate?: Date; } /** * Check if a given object implements the GetAttributeValuesRequest interface. */ export declare function instanceOfGetAttributeValuesRequest(value: object): value is GetAttributeValuesRequest; export declare function GetAttributeValuesRequestFromJSON(json: any): GetAttributeValuesRequest; export declare function GetAttributeValuesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAttributeValuesRequest; export declare function GetAttributeValuesRequestToJSON(json: any): GetAttributeValuesRequest; export declare function GetAttributeValuesRequestToJSONTyped(value?: GetAttributeValuesRequest | null, ignoreDiscriminator?: boolean): any;