AddIDPToLoginPolicyRequest constructor
AddIDPToLoginPolicyRequest({
- String? idpId,
- IDPOwnerType? ownerType,
Implementation
factory AddIDPToLoginPolicyRequest({
$core.String? idpId,
$10.IDPOwnerType? ownerType,
}) {
final $result = create();
if (idpId != null) {
$result.idpId = idpId;
}
if (ownerType != null) {
$result.ownerType = ownerType;
}
return $result;
}