UpdateCustomNotificationPolicyRequest constructor

UpdateCustomNotificationPolicyRequest({
  1. bool? passwordChange,
})

Implementation

factory UpdateCustomNotificationPolicyRequest({
  $core.bool? passwordChange,
}) {
  final $result = create();
  if (passwordChange != null) {
    $result.passwordChange = passwordChange;
  }
  return $result;
}