UNPKG

sendingnetwork-bot-sdk

Version:
11 lines (10 loc) 215 B
/** * An OpenID Connect token from the node. * @category Models */ export interface OpenIDConnectToken { access_token: string; expires_in: number; sdn_server_name: string; token_type: 'Bearer'; }