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