Input$ExportObjectsInput constructor
Implementation
factory Input$ExportObjectsInput({
Input$ExportObjectTypeInput? scenes,
Input$ExportObjectTypeInput? images,
Input$ExportObjectTypeInput? studios,
Input$ExportObjectTypeInput? performers,
Input$ExportObjectTypeInput? tags,
Input$ExportObjectTypeInput? groups,
@Deprecated('Use groups instead') Input$ExportObjectTypeInput? movies,
Input$ExportObjectTypeInput? galleries,
bool? includeDependencies,
}) => Input$ExportObjectsInput._({
if (scenes != null) r'scenes': scenes,
if (images != null) r'images': images,
if (studios != null) r'studios': studios,
if (performers != null) r'performers': performers,
if (tags != null) r'tags': tags,
if (groups != null) r'groups': groups,
if (movies != null) r'movies': movies,
if (galleries != null) r'galleries': galleries,
if (includeDependencies != null)
r'includeDependencies': includeDependencies,
});