UNPKG

@e2y/occ-client

Version:

OCC client for SAP Commerce Cloud

10 lines (9 loc) 217 B
/** * Represents the response object returned by an OAuth2 token request. */ export interface OAuth2TokenResponse { access_token: string; token_type: 'bearer'; expires_in: number; scope: string[]; }