QueueListQueuesInput constructor
- @JsonSerializable.new(includeIfNull: false)
const
QueueListQueuesInput(
{ - bool? enabled,
- String? subjectType,
- String? collection,
- List<String>? reportTypes,
- @Default.new(50) int limit,
- String? cursor,
- Map<String, dynamic>? $unknown,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory QueueListQueuesInput({
/// Filter by enabled status. If not specified, returns all queues.
bool? enabled,
/// Filter queues that handle this subject type ('account' or 'record').
String? subjectType,
/// Filter queues by collection name (e.g. 'app.bsky.feed.post').
String? collection,
List<String>? reportTypes,
@Default(50) int limit,
String? cursor,
Map<String, dynamic>? $unknown,
}) = _QueueListQueuesInput;