Input$PerformerUpdateInput constructor

Input$PerformerUpdateInput({
  1. required String id,
  2. String? name,
  3. String? disambiguation,
  4. @Deprecated('Use urls') String? url,
  5. List<String>? urls,
  6. Enum$GenderEnum? gender,
  7. String? birthdate,
  8. String? ethnicity,
  9. String? country,
  10. String? eye_color,
  11. int? height_cm,
  12. String? measurements,
  13. String? fake_tits,
  14. double? penis_length,
  15. Enum$CircumcisedEnum? circumcised,
  16. @Deprecated('Use career_start and career_end') String? career_length,
  17. String? career_start,
  18. String? career_end,
  19. String? tattoos,
  20. String? piercings,
  21. List<String>? alias_list,
  22. @Deprecated('Use urls') String? twitter,
  23. @Deprecated('Use urls') String? instagram,
  24. bool? favorite,
  25. List<String>? tag_ids,
  26. String? image,
  27. List<Input$StashIDInput>? stash_ids,
  28. int? rating100,
  29. String? details,
  30. String? death_date,
  31. String? hair_color,
  32. int? weight,
  33. bool? ignore_auto_tag,
  34. Input$CustomFieldsInput? custom_fields,
})

Implementation

factory Input$PerformerUpdateInput({
  required String id,
  String? name,
  String? disambiguation,
  @Deprecated('Use urls') String? url,
  List<String>? urls,
  Enum$GenderEnum? gender,
  String? birthdate,
  String? ethnicity,
  String? country,
  String? eye_color,
  int? height_cm,
  String? measurements,
  String? fake_tits,
  double? penis_length,
  Enum$CircumcisedEnum? circumcised,
  @Deprecated('Use career_start and career_end') String? career_length,
  String? career_start,
  String? career_end,
  String? tattoos,
  String? piercings,
  List<String>? alias_list,
  @Deprecated('Use urls') String? twitter,
  @Deprecated('Use urls') String? instagram,
  bool? favorite,
  List<String>? tag_ids,
  String? image,
  List<Input$StashIDInput>? stash_ids,
  int? rating100,
  String? details,
  String? death_date,
  String? hair_color,
  int? weight,
  bool? ignore_auto_tag,
  Input$CustomFieldsInput? custom_fields,
}) => Input$PerformerUpdateInput._({
  r'id': id,
  if (name != null) r'name': name,
  if (disambiguation != null) r'disambiguation': disambiguation,
  if (url != null) r'url': url,
  if (urls != null) r'urls': urls,
  if (gender != null) r'gender': gender,
  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_cm != null) r'height_cm': height_cm,
  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 (alias_list != null) r'alias_list': alias_list,
  if (twitter != null) r'twitter': twitter,
  if (instagram != null) r'instagram': instagram,
  if (favorite != null) r'favorite': favorite,
  if (tag_ids != null) r'tag_ids': tag_ids,
  if (image != null) r'image': image,
  if (stash_ids != null) r'stash_ids': stash_ids,
  if (rating100 != null) r'rating100': rating100,
  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 (ignore_auto_tag != null) r'ignore_auto_tag': ignore_auto_tag,
  if (custom_fields != null) r'custom_fields': custom_fields,
});