Input$ScraperSourceInput constructor

Input$ScraperSourceInput({
  1. @Deprecated('use stash_box_endpoint') int? stash_box_index,
  2. String? stash_box_endpoint,
  3. String? scraper_id,
})

Implementation

factory Input$ScraperSourceInput({
  @Deprecated('use stash_box_endpoint') int? stash_box_index,
  String? stash_box_endpoint,
  String? scraper_id,
}) => Input$ScraperSourceInput._({
  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 (scraper_id != null) r'scraper_id': scraper_id,
});