CreateOIDCApplicationResponse constructor
CreateOIDCApplicationResponse({
- String? clientId,
- String? clientSecret,
- bool? nonCompliant,
- Iterable<
OIDCLocalizedMessage> ? complianceProblems,
Implementation
factory CreateOIDCApplicationResponse({
$core.String? clientId,
$core.String? clientSecret,
$core.bool? nonCompliant,
$core.Iterable<$4.OIDCLocalizedMessage>? complianceProblems,
}) {
final result = create();
if (clientId != null) result.clientId = clientId;
if (clientSecret != null) result.clientSecret = clientSecret;
if (nonCompliant != null) result.nonCompliant = nonCompliant;
if (complianceProblems != null)
result.complianceProblems.addAll(complianceProblems);
return result;
}