/** * 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 GetDeviceDistributionRequest */ export interface GetDeviceDistributionRequest { /** * * @type {Date} * @memberof GetDeviceDistributionRequest */ endDate?: Date; /** * * @type {string} * @memberof GetDeviceDistributionRequest */ linkId?: string; /** * * @type {Date} * @memberof GetDeviceDistributionRequest */ startDate?: Date; } /** * Check if a given object implements the GetDeviceDistributionRequest interface. */ export declare function instanceOfGetDeviceDistributionRequest(value: object): value is GetDeviceDistributionRequest; export declare function GetDeviceDistributionRequestFromJSON(json: any): GetDeviceDistributionRequest; export declare function GetDeviceDistributionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetDeviceDistributionRequest; export declare function GetDeviceDistributionRequestToJSON(json: any): GetDeviceDistributionRequest; export declare function GetDeviceDistributionRequestToJSONTyped(value?: GetDeviceDistributionRequest | null, ignoreDiscriminator?: boolean): any;