RemoveFailedEventRequest constructor

RemoveFailedEventRequest({
  1. String? database,
  2. String? viewName,
  3. Int64? failedSequence,
})

Implementation

factory RemoveFailedEventRequest({
  $core.String? database,
  $core.String? viewName,
  $fixnum.Int64? failedSequence,
}) {
  final _result = create();
  if (database != null) {
    _result.database = database;
  }
  if (viewName != null) {
    _result.viewName = viewName;
  }
  if (failedSequence != null) {
    _result.failedSequence = failedSequence;
  }
  return _result;
}