Interface RedirectResponse

interface RedirectResponse {
    authCode: string;
    error?: string;
    isSuccess: boolean;
    state: string;
}

Properties

authCode: string
error?: string
isSuccess: boolean
state: string