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