UpdateOrgIDPRequest constructor

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

Implementation

factory UpdateOrgIDPRequest({
  $core.String? idpId,
  $core.String? name,
  $11.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;
}