//! Token pair returned by JWT session lifecycle methods.
use ;
/// A pair of JWT tokens issued on successful authentication or rotation.
///
/// The `access_token` is short-lived and used to authenticate API requests.
/// The `refresh_token` is long-lived and used to obtain a new token pair via
/// the rotate endpoint. Both `*_expires_at` fields are Unix timestamps in seconds.