/** * 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 GetAttributeDistributionRequest */ export interface GetAttributeDistributionRequest { /** * * @type {Date} * @memberof GetAttributeDistributionRequest */ endDate?: Date; /** * * @type {string} * @memberof GetAttributeDistributionRequest */ key?: string; /** * * @type {number} * @memberof GetAttributeDistributionRequest */ limit?: number; /** * * @type {string} * @memberof GetAttributeDistributionRequest */ linkId?: string; /** * * @type {Date} * @memberof GetAttributeDistributionRequest */ startDate?: Date; } /** * Check if a given object implements the GetAttributeDistributionRequest interface. */ export declare function instanceOfGetAttributeDistributionRequest(value: object): value is GetAttributeDistributionRequest; export declare function GetAttributeDistributionRequestFromJSON(json: any): GetAttributeDistributionRequest; export declare function GetAttributeDistributionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAttributeDistributionRequest; export declare function GetAttributeDistributionRequestToJSON(json: any): GetAttributeDistributionRequest; export declare function GetAttributeDistributionRequestToJSONTyped(value?: GetAttributeDistributionRequest | null, ignoreDiscriminator?: boolean): any;