/** * 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 { AuditRecordBean } from './'; /** * Container for a list of audit records. * @export * @interface AuditRecords */ export interface AuditRecords { /** * The requested or default limit on the number of audit items to be returned. * @type {number} * @memberof AuditRecords */ readonly limit?: number; /** * The list of audit items. * @type {Array} * @memberof AuditRecords */ readonly records?: Array; /** * The total number of audit items returned. * @type {number} * @memberof AuditRecords */ readonly total?: number; /** * The number of audit items skipped before the first item in this list. * @type {number} * @memberof AuditRecords */ readonly offset?: number; } export declare function AuditRecordsFromJSON(json: any): AuditRecords; export declare function AuditRecordsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuditRecords; export declare function AuditRecordsToJSON(value?: AuditRecords): any;