AddIDPToLoginPolicyRequest constructor

AddIDPToLoginPolicyRequest({
  1. String? idpId,
  2. IDPOwnerType? ownerType,
})

Implementation

factory AddIDPToLoginPolicyRequest({
  $core.String? idpId,
  $11.IDPOwnerType? ownerType,
}) {
  final _result = create();
  if (idpId != null) {
    _result.idpId = idpId;
  }
  if (ownerType != null) {
    _result.ownerType = ownerType;
  }
  return _result;
}