namespace PS.IPAM;
///
/// Represents the current status of an API session.
///
public enum SessionStatus
{
///
/// No session exists or no token is available.
///
NoSession,
///
/// The session token has expired.
///
Expired,
///
/// The session is valid and ready for use.
///
Valid
}