QueueUpdateQueueInput constructor
- @JsonSerializable.new(includeIfNull: false)
const
QueueUpdateQueueInput(
{ - required int queueId,
- String? name,
- bool? enabled,
- String? description,
- 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;