Interface representing the body of a refresh token request.

interface RefreshTokenBody {
    current: string;
    domain?: string;
    signature: string;
}

Properties

current: string

The current token.

domain?: string

Optional. The domain of the token.

signature: string

The signature of the token.