/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import { AuditRecords } from '../models'; export interface GetAuditRecordsRequest { offset?: number; limit?: number; filter?: string; from?: Date; to?: Date; } /** * no description */ export declare class AuditRecordsApi extends runtime.BaseAPI { /** * Returns a list of audit records. The list can be filtered to include items: * containing a string in at least one field. For example, providing *up* will return all audit records where one or more fields contains words such as *update*. * created on or after a date and time. * created or or before a date and time. * created during a time period. **[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg). * Get audit records */ getAuditRecordsRaw(requestParameters: GetAuditRecordsRequest): Promise>; /** * Returns a list of audit records. The list can be filtered to include items: * containing a string in at least one field. For example, providing *up* will return all audit records where one or more fields contains words such as *update*. * created on or after a date and time. * created or or before a date and time. * created during a time period. **[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg). * Get audit records */ getAuditRecords(requestParameters: GetAuditRecordsRequest): Promise; }