QueueUpdateQueueInput constructor

  1. @JsonSerializable.new(includeIfNull: false)
const QueueUpdateQueueInput({
  1. required int queueId,
  2. String? name,
  3. bool? enabled,
  4. String? description,
  5. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory QueueUpdateQueueInput({
  /// ID of the queue to update
  required int queueId,

  /// New display name for the queue
  String? name,

  /// Enable or disable the queue
  bool? enabled,

  /// Optional description of the queue
  String? description,

  Map<String, dynamic>? $unknown,
}) = _QueueUpdateQueueInput;