Input$ScrapedPerformerInput constructor
Input$ScrapedPerformerInput({ - String? stored_id,
- String? name,
- String? disambiguation,
- String? gender,
- @Deprecated('use urls') String? url,
- List<String>? urls,
- @Deprecated('use urls') String? instagram,
- String? birthdate,
- String? ethnicity,
- String? country,
- String? eye_color,
- String? height,
- String? measurements,
- String? fake_tits,
- String? penis_length,
- String? circumcised,
- @Deprecated('Use career_start and career_end') String? career_length,
- String? career_start,
- String? career_end,
- String? tattoos,
- String? piercings,
- String? aliases,
- String? details,
- String? death_date,
- String? hair_color,
- String? weight,
- String? remote_site_id,
})
Implementation
factory Input$ScrapedPerformerInput({
String? stored_id,
String? name,
String? disambiguation,
String? gender,
@Deprecated('use urls') String? url,
List<String>? urls,
@Deprecated('use urls') String? twitter,
@Deprecated('use urls') String? instagram,
String? birthdate,
String? ethnicity,
String? country,
String? eye_color,
String? height,
String? measurements,
String? fake_tits,
String? penis_length,
String? circumcised,
@Deprecated('Use career_start and career_end') String? career_length,
String? career_start,
String? career_end,
String? tattoos,
String? piercings,
String? aliases,
String? details,
String? death_date,
String? hair_color,
String? weight,
String? remote_site_id,
}) => Input$ScrapedPerformerInput._({
if (stored_id != null) r'stored_id': stored_id,
if (name != null) r'name': name,
if (disambiguation != null) r'disambiguation': disambiguation,
if (gender != null) r'gender': gender,
if (url != null) r'url': url,
if (urls != null) r'urls': urls,
if (twitter != null) r'twitter': twitter,
if (instagram != null) r'instagram': instagram,
if (birthdate != null) r'birthdate': birthdate,
if (ethnicity != null) r'ethnicity': ethnicity,
if (country != null) r'country': country,
if (eye_color != null) r'eye_color': eye_color,
if (height != null) r'height': height,
if (measurements != null) r'measurements': measurements,
if (fake_tits != null) r'fake_tits': fake_tits,
if (penis_length != null) r'penis_length': penis_length,
if (circumcised != null) r'circumcised': circumcised,
if (career_length != null) r'career_length': career_length,
if (career_start != null) r'career_start': career_start,
if (career_end != null) r'career_end': career_end,
if (tattoos != null) r'tattoos': tattoos,
if (piercings != null) r'piercings': piercings,
if (aliases != null) r'aliases': aliases,
if (details != null) r'details': details,
if (death_date != null) r'death_date': death_date,
if (hair_color != null) r'hair_color': hair_color,
if (weight != null) r'weight': weight,
if (remote_site_id != null) r'remote_site_id': remote_site_id,
});