Input$StashBoxSceneQueryInput constructor

Input$StashBoxSceneQueryInput({
  1. @Deprecated('use stash_box_endpoint') int? stash_box_index,
  2. String? stash_box_endpoint,
  3. List<String>? scene_ids,
  4. String? q,
})

Implementation

factory Input$StashBoxSceneQueryInput({
  @Deprecated('use stash_box_endpoint') int? stash_box_index,
  String? stash_box_endpoint,
  List<String>? scene_ids,
  String? q,
}) => Input$StashBoxSceneQueryInput._({
  if (stash_box_index != null) r'stash_box_index': stash_box_index,
  if (stash_box_endpoint != null) r'stash_box_endpoint': stash_box_endpoint,
  if (scene_ids != null) r'scene_ids': scene_ids,
  if (q != null) r'q': q,
});