/** * Response for * password credentials grant request * refresh token grant request * [see](https://www.oauth.com/oauth2-servers/access-tokens/access-token-response/) */ export interface SdPlatformAuthResponse { access_token?: string; refresh_token?: string; expires_in?: number; /** Always "Bearer" */ token_type?: string; scope?: string; } export interface SdPlatformAuthorizationCodeResponse { readonly code: string; } export interface SdPlatformAuthLogoutResponse { success: boolean; } //# sourceMappingURL=SdPlatformAuthResponse.d.ts.map