UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

12 lines 333 B
/** An oAuth2 accesss token details */ export interface AccessToken { /** token's creation date */ createdAt: string; /** token's expiration date */ expiresAt?: string; /** id of the token */ id: string; /** list of scopes the token has */ scopes: string[]; } //# sourceMappingURL=AccessToken.d.ts.map