AddOIDCAppResponse constructor

AddOIDCAppResponse({
  1. String? appId,
  2. ObjectDetails? details,
  3. String? clientId,
  4. String? clientSecret,
  5. bool? noneCompliant,
  6. 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;
}