Input$GenerateMetadataInput constructor

Input$GenerateMetadataInput({
  1. bool? covers,
  2. bool? sprites,
  3. bool? previews,
  4. bool? imagePreviews,
  5. Input$GeneratePreviewOptionsInput? previewOptions,
  6. bool? markers,
  7. bool? markerImagePreviews,
  8. bool? markerScreenshots,
  9. bool? transcodes,
  10. bool? forceTranscodes,
  11. bool? phashes,
  12. bool? interactiveHeatmapsSpeeds,
  13. bool? imagePhashes,
  14. bool? imageThumbnails,
  15. bool? clipPreviews,
  16. List<String>? sceneIDs,
  17. List<String>? markerIDs,
  18. List<String>? imageIDs,
  19. List<String>? galleryIDs,
  20. List<String>? paths,
  21. bool? overwrite,
})

Implementation

factory Input$GenerateMetadataInput({
  bool? covers,
  bool? sprites,
  bool? previews,
  bool? imagePreviews,
  Input$GeneratePreviewOptionsInput? previewOptions,
  bool? markers,
  bool? markerImagePreviews,
  bool? markerScreenshots,
  bool? transcodes,
  bool? forceTranscodes,
  bool? phashes,
  bool? interactiveHeatmapsSpeeds,
  bool? imagePhashes,
  bool? imageThumbnails,
  bool? clipPreviews,
  List<String>? sceneIDs,
  List<String>? markerIDs,
  List<String>? imageIDs,
  List<String>? galleryIDs,
  List<String>? paths,
  bool? overwrite,
}) => Input$GenerateMetadataInput._({
  if (covers != null) r'covers': covers,
  if (sprites != null) r'sprites': sprites,
  if (previews != null) r'previews': previews,
  if (imagePreviews != null) r'imagePreviews': imagePreviews,
  if (previewOptions != null) r'previewOptions': previewOptions,
  if (markers != null) r'markers': markers,
  if (markerImagePreviews != null)
    r'markerImagePreviews': markerImagePreviews,
  if (markerScreenshots != null) r'markerScreenshots': markerScreenshots,
  if (transcodes != null) r'transcodes': transcodes,
  if (forceTranscodes != null) r'forceTranscodes': forceTranscodes,
  if (phashes != null) r'phashes': phashes,
  if (interactiveHeatmapsSpeeds != null)
    r'interactiveHeatmapsSpeeds': interactiveHeatmapsSpeeds,
  if (imagePhashes != null) r'imagePhashes': imagePhashes,
  if (imageThumbnails != null) r'imageThumbnails': imageThumbnails,
  if (clipPreviews != null) r'clipPreviews': clipPreviews,
  if (sceneIDs != null) r'sceneIDs': sceneIDs,
  if (markerIDs != null) r'markerIDs': markerIDs,
  if (imageIDs != null) r'imageIDs': imageIDs,
  if (galleryIDs != null) r'galleryIDs': galleryIDs,
  if (paths != null) r'paths': paths,
  if (overwrite != null) r'overwrite': overwrite,
});