UpdateIDPRequest constructor

UpdateIDPRequest({
  1. String? idpId,
  2. String? name,
  3. IDPStylingType? stylingType,
  4. bool? autoRegister,
})

Implementation

factory UpdateIDPRequest({
  $core.String? idpId,
  $core.String? name,
  $6.IDPStylingType? stylingType,
  $core.bool? autoRegister,
}) {
  final result = create();
  if (idpId != null) result.idpId = idpId;
  if (name != null) result.name = name;
  if (stylingType != null) result.stylingType = stylingType;
  if (autoRegister != null) result.autoRegister = autoRegister;
  return result;
}