interface AuthorizeSuccessResponse {
    _embedded?: { [key: string]: unknown };
    _links?: { [key: string]: { href: string } };
    authorizeResponse?: { code: string; state: string };
    createdAt?: string;
    environment?: { id: string };
    expiresAt?: string;
    id?: string;
    resumeUrl?: string;
    session?: { id: string };
    status?: string;
}

Properties

_embedded?: { [key: string]: unknown }
_links?: { [key: string]: { href: string } }
authorizeResponse?: { code: string; state: string }
createdAt?: string
environment?: { id: string }
expiresAt?: string
id?: string
resumeUrl?: string
session?: { id: string }
status?: string