RefreshTokenExchangeInterval

The exchange interval for the refresh token held by an OAuth credential. Use this to exchange a refresh token before it expires. This will limit the number of times a user will have to log-in because of expiring tokens. Note, equality is determined by the minutes value. So two different instances with the same minutes value are considered equal.

Since

200.1.0

Inheritors

Types

Link copied to clipboard

The exchange interval in minutes. If minutes is less than or equal to 0, the refresh token will not be exchanged (same behavior as Never).

Link copied to clipboard

The refresh token will not be exchanged. Once the refresh token expires, the user will have to log in again. minutes value is 0 for this case.

Properties

Link copied to clipboard

the exchange interval in minutes

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Two RefreshTokenExchangeInterval objects are considered equal if they have the same minutes value.

Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String