UpdateIDPRequest constructor
UpdateIDPRequest({
- String? idpId,
- String? name,
- IDPStylingType? stylingType,
- bool? autoRegister,
Implementation
factory UpdateIDPRequest({
$core.String? idpId,
$core.String? name,
$10.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;
}