/** * Fulfillment API * - alpha: Currently developed API version. Subject to major changes. - beta: A semi-stable early access version. New features can be added. Breaking changes are possible. - stable: The API is recommended for use in production. [Changelog](https://fulfillment-api.steve.niceshops.com/v2/docs/changelog.html) All data is transferred in UTF-8 encoding.\\ The API uses stateless HTTP. No cookies have to be kept.\\ Authentication via OAuth2 client credentials flow. [Privacy Policy](https://www.niceshops.com/en/dienstleistungen/data-privacy-policy) [Fulfillment API PHP client @Packagist](https://packagist.org/packages/datenkraft/bb-fulfillment-api-php-client) * * The version of the OpenAPI document: v2.beta * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Data to represent a audit log entry. * @export * @interface AuditLog */ export interface AuditLog { /** * Id * @type {string} * @memberof AuditLog */ 'id'?: string; /** * The name of the audited endpoint. * @type {string} * @memberof AuditLog */ 'endpoint'?: string; /** * The version of the audited endpoint. * @type {string} * @memberof AuditLog */ 'version'?: string; /** * The identifier of the resource. * @type {string} * @memberof AuditLog */ 'identifier'?: string; /** * The content of the resource. * @type {string} * @memberof AuditLog */ 'content'?: string | null; /** * The GDPR relevant content of the resource. * @type {string} * @memberof AuditLog */ 'confidentialContent'?: string | null; /** * The optional request ID of the endpoint call. * @type {string} * @memberof AuditLog */ 'requestId'?: string | null; /** * The OAuth client id which did the change. * @type {string} * @memberof AuditLog */ 'oauthClientId'?: string; /** * The timestamp of the action. Format in ISO 8601. * @type {string} * @memberof AuditLog */ 'timestamp'?: string; }