platform/lib/src.old/authorization_request.dart

8 lines
269 B
Dart
Raw Normal View History

2017-01-24 03:28:34 +00:00
import 'grant_type.dart';
/// An authorization grant is a credential representing the resource
/// owner's authorization (to access its protected resources) used by the
/// client to obtain an access token.
abstract class AuthorizationRequest {
GrantType get type;
}