SsoCompleteResult
in package
FinalYes
The result of `ssoComplete` (wire schema `SsoLoginSuccessResponse`, CONTRACT.md §12.1). Carries **no token material** — the session arrives as `Set-Cookie`, so the §4 cookie jar (shared by every `AxiamClient` Guzzle transport) is what actually captures it (§12.1 note 6).
Table of Contents
Properties
- $expiresIn : int
- $redirectUri : string
- $sessionId : string
- $userId : string
Methods
- __construct() : mixed
Properties
$expiresIn read-only
public
int
$expiresIn
$redirectUri read-only
public
string
$redirectUri
$sessionId read-only
public
string
$sessionId
$userId read-only
public
string
$userId
Methods
__construct()
public
__construct(string $userId, string $sessionId, int $expiresIn, string $redirectUri) : mixed
Parameters
- $userId : string
-
The provisioned/linked user's UUID.
- $sessionId : string
-
The established session's UUID.
- $expiresIn : int
-
Session/access-token lifetime in seconds.
- $redirectUri : string
-
The post-login destination that was stored during
ssoStart.