b1b2bb90a5
Signed-off-by: dab246 <tdvu@linagora.com> (cherry picked from commit c8a39bb42792770c001ac90d6301d53126225d95)
26 lines
865 B
Dart
26 lines
865 B
Dart
import 'package:equatable/equatable.dart';
|
|
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'oidc_discovery_response.g.dart';
|
|
|
|
@JsonSerializable(explicitToJson: true, includeIfNull: false)
|
|
class OIDCDiscoveryResponse with EquatableMixin {
|
|
|
|
@JsonKey(name: 'authorization_endpoint')
|
|
final String? authorizationEndpoint;
|
|
|
|
@JsonKey(name: 'token_endpoint')
|
|
final String? tokenEndpoint;
|
|
|
|
@JsonKey(name: 'end_session_endpoint')
|
|
final String? endSessionEndpoint;
|
|
|
|
OIDCDiscoveryResponse(this.authorizationEndpoint, this.tokenEndpoint, this.endSessionEndpoint);
|
|
|
|
factory OIDCDiscoveryResponse.fromJson(Map<String, dynamic> json) => _$OIDCDiscoveryResponseFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$OIDCDiscoveryResponseToJson(this);
|
|
|
|
@override
|
|
List<Object?> get props => [authorizationEndpoint, tokenEndpoint, endSessionEndpoint];
|
|
} |