/** * 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. */ /** * * @export * @interface AuthnMeUserRead */ export interface AuthnMeUserRead { /** * * @type {string} * @memberof AuthnMeUserRead */ actor_type?: AuthnMeUserReadActorTypeEnum; /** * * @type {string} * @memberof AuthnMeUserRead */ id: string; /** * * @type {string} * @memberof AuthnMeUserRead */ key: string; /** * * @type {string} * @memberof AuthnMeUserRead */ org_id: string; /** * * @type {string} * @memberof AuthnMeUserRead */ project_id: string; /** * * @type {string} * @memberof AuthnMeUserRead */ env_id: string; /** * * @type {string} * @memberof AuthnMeUserRead */ tenant_id: string; /** * Email of the user controlling this account * @type {string} * @memberof AuthnMeUserRead */ email: string; /** * Name of this user * @type {string} * @memberof AuthnMeUserRead */ name?: string; /** * Given name of the user * @type {string} * @memberof AuthnMeUserRead */ given_name?: string; /** * Family name of the user * @type {string} * @memberof AuthnMeUserRead */ family_name?: string; /** * URL to picture, photo, or avatar of the user that controls this account. * @type {string} * @memberof AuthnMeUserRead */ picture?: string; /** * * @type {boolean} * @memberof AuthnMeUserRead */ is_onboarding?: AuthnMeUserReadIsOnboardingEnum; /** * * @type {string} * @memberof AuthnMeUserRead */ onboarding_step?: AuthnMeUserReadOnboardingStepEnum; } export declare const AuthnMeUserReadActorTypeEnum: { readonly User: "user"; }; export type AuthnMeUserReadActorTypeEnum = typeof AuthnMeUserReadActorTypeEnum[keyof typeof AuthnMeUserReadActorTypeEnum]; export declare const AuthnMeUserReadIsOnboardingEnum: { readonly False: false; }; export type AuthnMeUserReadIsOnboardingEnum = typeof AuthnMeUserReadIsOnboardingEnum[keyof typeof AuthnMeUserReadIsOnboardingEnum]; export declare const AuthnMeUserReadOnboardingStepEnum: { readonly Done: "done"; }; export type AuthnMeUserReadOnboardingStepEnum = typeof AuthnMeUserReadOnboardingStepEnum[keyof typeof AuthnMeUserReadOnboardingStepEnum];