import { BaseClient, RequestOptions } from './base-client'; import { ReminderListResponse, ReminderResponse, ReminderUpdateRequest, ReminderCreateRequest } from './model'; /** * Welcome to the Key Telematics Fleet API specification. This document outlines the REST routes and data structures returned by the API and offers examples of usage. The API publishes a [swagger](https://swagger.io/) specification that can be used to [generate a client library](https://github.com/swagger-api/swagger-codegen) for your language of choice. The latest swagger file is available for download from the following link: [https://api.eu1.kt1.io/fleet/v2/swagger.json](https://api.eu1.kt1.io/fleet/v2/swagger.json) * @class RemindersClient * @param {(string)} [url] - The URL of the API endpoint. */ export declare class RemindersClient extends BaseClient { /** * Retrieve a list of reminders for a specified owner. * @method * @name RemindersClient#listReminders * @param {string} owner - The owner id you are requesting data for * @param {string} target - The target entity you are requesting data for * @param {number} offset - An offset into the result set, useful for pagination * @param {number} limit - Limit the number of results to this value. * @param {string} sort - Sorting column or attribute name with an optional direction, e.g. `sort=name:desc` * @param {string} filter - A filter to apply to the data in RQL format. */ listReminders(owner: string, target?: string, offset?: number, limit?: number, sort?: string, filter?: string, $options?: RequestOptions): Promise; /** * Creates a new reminder entity * @method * @name RemindersClient#createReminder * @param {object} request - Welcome to the Key Telematics Fleet API specification. This document outlines the REST routes and data structures returned by the API and offers examples of usage. The API publishes a [swagger](https://swagger.io/) specification that can be used to [generate a client library](https://github.com/swagger-api/swagger-codegen) for your language of choice. The latest swagger file is available for download from the following link: [https://api.eu1.kt1.io/fleet/v2/swagger.json](https://api.eu1.kt1.io/fleet/v2/swagger.json) */ createReminder(request: ReminderCreateRequest, $options?: RequestOptions): Promise; /** * Retrieve a reminder by it's ID. * @method * @name RemindersClient#getReminder * @param {string} id - The reminder UUID. */ getReminder(id: string, $options?: RequestOptions): Promise; /** * Updates an existing reminder entity * @method * @name RemindersClient#updateReminder * @param {string} id - The reminder UUID. * @param {object} request - Welcome to the Key Telematics Fleet API specification. This document outlines the REST routes and data structures returned by the API and offers examples of usage. The API publishes a [swagger](https://swagger.io/) specification that can be used to [generate a client library](https://github.com/swagger-api/swagger-codegen) for your language of choice. The latest swagger file is available for download from the following link: [https://api.eu1.kt1.io/fleet/v2/swagger.json](https://api.eu1.kt1.io/fleet/v2/swagger.json) */ updateReminder(id: string, request: ReminderUpdateRequest, $options?: RequestOptions): Promise; /** * Deletes an existing reminder entity * @method * @name RemindersClient#deleteReminder * @param {string} id - The reminder UUID. */ deleteReminder(id: string, $options?: RequestOptions): Promise; }