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;
}