AcknowledgeBackfillRequest constructor
AcknowledgeBackfillRequest({
- String? backfillId,
- Assignment? assignment,
Implementation
factory AcknowledgeBackfillRequest({
$core.String? backfillId,
$3.Assignment? assignment,
}) {
final _result = create();
if (backfillId != null) {
_result.backfillId = backfillId;
}
if (assignment != null) {
_result.assignment = assignment;
}
return _result;
}