/** * 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 { APIKeyOwnerType } from './apikey-owner-type'; import { MemberAccessObj } from './member-access-obj'; /** * * @export * @interface AuthnMeAPIKeyRead */ export interface AuthnMeAPIKeyRead { /** * * @type {string} * @memberof AuthnMeAPIKeyRead */ actor_type?: AuthnMeAPIKeyReadActorTypeEnum; /** * * @type {string} * @memberof AuthnMeAPIKeyRead */ id: string; /** * * @type {MemberAccessObj} * @memberof AuthnMeAPIKeyRead */ object_type: MemberAccessObj; /** * * @type {APIKeyOwnerType} * @memberof AuthnMeAPIKeyRead */ owner_type: APIKeyOwnerType; /** * * @type {string} * @memberof AuthnMeAPIKeyRead */ org_id: string; /** * * @type {string} * @memberof AuthnMeAPIKeyRead */ project_id?: string; /** * * @type {string} * @memberof AuthnMeAPIKeyRead */ env_id?: string; } export declare const AuthnMeAPIKeyReadActorTypeEnum: { readonly ApiKey: "api_key"; }; export type AuthnMeAPIKeyReadActorTypeEnum = typeof AuthnMeAPIKeyReadActorTypeEnum[keyof typeof AuthnMeAPIKeyReadActorTypeEnum];