QueueListQueuesInput constructor

  1. @JsonSerializable.new(includeIfNull: false)
const QueueListQueuesInput({
  1. bool? enabled,
  2. String? subjectType,
  3. String? collection,
  4. List<String>? reportTypes,
  5. @Default.new(50) int limit,
  6. String? cursor,
  7. 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;