Input$ScrapedSceneInput constructor
Implementation
factory Input$ScrapedSceneInput({
String? title,
String? code,
String? details,
String? director,
@Deprecated('use urls') String? url,
List<String>? urls,
String? date,
String? remote_site_id,
}) => Input$ScrapedSceneInput._({
if (title != null) r'title': title,
if (code != null) r'code': code,
if (details != null) r'details': details,
if (director != null) r'director': director,
if (url != null) r'url': url,
if (urls != null) r'urls': urls,
if (date != null) r'date': date,
if (remote_site_id != null) r'remote_site_id': remote_site_id,
});