QueueDeleteQueueInput constructor

  1. @JsonSerializable.new(includeIfNull: false)
const QueueDeleteQueueInput({
  1. required int queueId,
  2. int? migrateToQueueId,
  3. 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;