AddOIDCAppResponse constructor
AddOIDCAppResponse({
- String? appId,
- ObjectDetails? details,
- String? clientId,
- String? clientSecret,
- bool? noneCompliant,
- Iterable<
LocalizedMessage> ? complianceProblems,
Implementation
factory AddOIDCAppResponse({
$core.String? appId,
$2.ObjectDetails? details,
$core.String? clientId,
$core.String? clientSecret,
$core.bool? noneCompliant,
$core.Iterable<$13.LocalizedMessage>? complianceProblems,
}) {
final result = create();
if (appId != null) result.appId = appId;
if (details != null) result.details = details;
if (clientId != null) result.clientId = clientId;
if (clientSecret != null) result.clientSecret = clientSecret;
if (noneCompliant != null) result.noneCompliant = noneCompliant;
if (complianceProblems != null)
result.complianceProblems.addAll(complianceProblems);
return result;
}