platform/lib/src.old/authorization_request.dart
2017-01-23 22:28:34 -05:00

8 lines
No EOL
269 B
Dart

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;
}