RegisterClientResponse class

Constructors

RegisterClientResponse({String? authorizationEndpoint, String? clientId, int? clientIdIssuedAt, String? clientSecret, int? clientSecretExpiresAt, String? tokenEndpoint})
RegisterClientResponse.fromJson(Map<String, dynamic> json)
factory

Properties

authorizationEndpoint String?
The endpoint where the client can request authorization.
final
clientId String?
The unique identifier string for each client. This client uses this identifier to get authenticated by the service in subsequent calls.
final
clientIdIssuedAt int?
Indicates the time at which the clientId and clientSecret were issued.
final
clientSecret String?
A secret string generated for the client. The client will use this string to get authenticated by the service in subsequent calls.
final
clientSecretExpiresAt int?
Indicates the time at which the clientId and clientSecret will become invalid.
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
tokenEndpoint String?
The endpoint where the client can get an access token.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited