Interface ChallengeStateResponse

interface ChallengeStateResponse {
    action: string;
    logged_in_user?: AccountRepositoryLoginResponseLogged_in_user;
    nonce_code: string;
    status: string;
    step_data: ChallengeRepositoryStateResponseStepData;
    step_name: string;
    user_id: number;
}

Properties

action: string
nonce_code: string
status: string
step_name: string
user_id: number