Input$GenerateMetadataInput constructor
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,
})
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,
});