UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

9 lines 202 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ export interface OAuthTokenResponse{ access_token: string, token_type: string, scope: string, refresh_token: string }