/** * 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 { InviteAttemptResult } from './invite-attempt-result'; /** * * @export * @interface LoginResult */ export interface LoginResult { /** * whether login was successful * @type {boolean} * @memberof LoginResult */ logged_in: boolean; /** * when will the login session expire (the unix timestamp in seconds) * @type {number} * @memberof LoginResult */ expires_at: number; /** * the active organization on the session after the login * @type {string} * @memberof LoginResult */ active_org_id?: string; /** * * @type {InviteAttemptResult} * @memberof LoginResult */ invite_attempt?: InviteAttemptResult; }