Skip to main content

MigratePersonalTokenResponse

type MigratePersonalTokenResponse = {
accessToken: string | null;
expiresIn: number;
tokenType: string;
};

Response from a successful personal token migration.

Properties

accessToken

accessToken: string | null;

The new OAuth access token, or null if migration failed.


expiresIn

expiresIn: number;

Token expiration time in seconds.


tokenType

tokenType: string;

The token type (always 'Bearer').