QueueDeleteQueueInput constructor
- @JsonSerializable.new(includeIfNull: false)
const
QueueDeleteQueueInput(
{ - required int queueId,
- int? migrateToQueueId,
- Map<String, dynamic>? $unknown,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory QueueDeleteQueueInput({
/// ID of the queue to delete
required int queueId,
/// Optional: migrate all reports to this queue. If not specified, reports will be set to unassigned (-1).
int? migrateToQueueId,
Map<String, dynamic>? $unknown,
}) = _QueueDeleteQueueInput;