QueueUpdateQueueInput constructor
const
QueueUpdateQueueInput({})
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;