/** * Permit.io API * Authorization as a service * * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ActionObj } from './action-obj'; import { EnvironmentObject } from './environment-object'; import { OrganizationObject } from './organization-object'; import { PdpConfigObject } from './pdp-config-object'; import { ProjectObject } from './project-object'; import { ResourceTypeObj } from './resource-type-obj'; import { TenantObj } from './tenant-obj'; import { UserObj } from './user-obj'; /** * * @export * @interface AuditLogObjects */ export interface AuditLogObjects { /** * * @type {OrganizationObject} * @memberof AuditLogObjects */ organization_object?: OrganizationObject; /** * * @type {ProjectObject} * @memberof AuditLogObjects */ project_object?: ProjectObject; /** * * @type {EnvironmentObject} * @memberof AuditLogObjects */ environment_object?: EnvironmentObject; /** * * @type {PdpConfigObject} * @memberof AuditLogObjects */ pdp_config_object?: PdpConfigObject; /** * * @type {UserObj} * @memberof AuditLogObjects */ user_object?: UserObj; /** * * @type {ActionObj} * @memberof AuditLogObjects */ action_object?: ActionObj; /** * * @type {ResourceTypeObj} * @memberof AuditLogObjects */ resource_type_object?: ResourceTypeObj; /** * * @type {TenantObj} * @memberof AuditLogObjects */ tenant_object?: TenantObj; }