mirror of
https://github.com/immich-app/immich.git
synced 2026-06-05 06:15:24 -04:00
99281de6ab
Co-authored-by: Daniel Dietzler <mail@ddietzler.dev> Co-authored-by: timonrieger <mail@timonrieger.de>
224 lines
8.7 KiB
Dart
Generated
224 lines
8.7 KiB
Dart
Generated
//
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
//
|
|
// @dart=2.18
|
|
|
|
// ignore_for_file: unused_element, unused_import
|
|
// ignore_for_file: always_put_required_named_parameters_first
|
|
// ignore_for_file: constant_identifier_names
|
|
// ignore_for_file: lines_longer_than_80_chars
|
|
|
|
part of openapi.api;
|
|
|
|
class UpdateAssetDto {
|
|
/// Returns a new [UpdateAssetDto] instance.
|
|
UpdateAssetDto({
|
|
this.dateTimeOriginal = const Optional.absent(),
|
|
this.description = const Optional.absent(),
|
|
this.isFavorite = const Optional.absent(),
|
|
this.latitude = const Optional.absent(),
|
|
this.livePhotoVideoId = const Optional.absent(),
|
|
this.longitude = const Optional.absent(),
|
|
this.rating = const Optional.absent(),
|
|
this.visibility = const Optional.absent(),
|
|
});
|
|
|
|
/// Original date and time
|
|
///
|
|
/// Please note: This property should have been non-nullable! Since the specification file
|
|
/// does not include a default value (using the "default:" property), however, the generated
|
|
/// source code must fall back to having a nullable type.
|
|
/// Consider adding a "default:" property in the specification file to hide this note.
|
|
///
|
|
Optional<String?> dateTimeOriginal;
|
|
|
|
/// Asset description
|
|
///
|
|
/// Please note: This property should have been non-nullable! Since the specification file
|
|
/// does not include a default value (using the "default:" property), however, the generated
|
|
/// source code must fall back to having a nullable type.
|
|
/// Consider adding a "default:" property in the specification file to hide this note.
|
|
///
|
|
Optional<String?> description;
|
|
|
|
/// Mark as favorite
|
|
///
|
|
/// Please note: This property should have been non-nullable! Since the specification file
|
|
/// does not include a default value (using the "default:" property), however, the generated
|
|
/// source code must fall back to having a nullable type.
|
|
/// Consider adding a "default:" property in the specification file to hide this note.
|
|
///
|
|
Optional<bool?> isFavorite;
|
|
|
|
/// Latitude coordinate
|
|
///
|
|
/// Minimum value: -90
|
|
/// Maximum value: 90
|
|
///
|
|
/// Please note: This property should have been non-nullable! Since the specification file
|
|
/// does not include a default value (using the "default:" property), however, the generated
|
|
/// source code must fall back to having a nullable type.
|
|
/// Consider adding a "default:" property in the specification file to hide this note.
|
|
///
|
|
Optional<num?> latitude;
|
|
|
|
/// Live photo video ID
|
|
Optional<String?> livePhotoVideoId;
|
|
|
|
/// Longitude coordinate
|
|
///
|
|
/// Minimum value: -180
|
|
/// Maximum value: 180
|
|
///
|
|
/// Please note: This property should have been non-nullable! Since the specification file
|
|
/// does not include a default value (using the "default:" property), however, the generated
|
|
/// source code must fall back to having a nullable type.
|
|
/// Consider adding a "default:" property in the specification file to hide this note.
|
|
///
|
|
Optional<num?> longitude;
|
|
|
|
/// Rating in range [1-5], or null for unrated
|
|
///
|
|
/// Minimum value: 1
|
|
/// Maximum value: 5
|
|
Optional<int?> rating;
|
|
|
|
///
|
|
/// Please note: This property should have been non-nullable! Since the specification file
|
|
/// does not include a default value (using the "default:" property), however, the generated
|
|
/// source code must fall back to having a nullable type.
|
|
/// Consider adding a "default:" property in the specification file to hide this note.
|
|
///
|
|
Optional<AssetVisibility?> visibility;
|
|
|
|
@override
|
|
bool operator ==(Object other) => identical(this, other) || other is UpdateAssetDto &&
|
|
other.dateTimeOriginal == dateTimeOriginal &&
|
|
other.description == description &&
|
|
other.isFavorite == isFavorite &&
|
|
other.latitude == latitude &&
|
|
other.livePhotoVideoId == livePhotoVideoId &&
|
|
other.longitude == longitude &&
|
|
other.rating == rating &&
|
|
other.visibility == visibility;
|
|
|
|
@override
|
|
int get hashCode =>
|
|
// ignore: unnecessary_parenthesis
|
|
(dateTimeOriginal == null ? 0 : dateTimeOriginal!.hashCode) +
|
|
(description == null ? 0 : description!.hashCode) +
|
|
(isFavorite == null ? 0 : isFavorite!.hashCode) +
|
|
(latitude == null ? 0 : latitude!.hashCode) +
|
|
(livePhotoVideoId == null ? 0 : livePhotoVideoId!.hashCode) +
|
|
(longitude == null ? 0 : longitude!.hashCode) +
|
|
(rating == null ? 0 : rating!.hashCode) +
|
|
(visibility == null ? 0 : visibility!.hashCode);
|
|
|
|
@override
|
|
String toString() => 'UpdateAssetDto[dateTimeOriginal=$dateTimeOriginal, description=$description, isFavorite=$isFavorite, latitude=$latitude, livePhotoVideoId=$livePhotoVideoId, longitude=$longitude, rating=$rating, visibility=$visibility]';
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final json = <String, dynamic>{};
|
|
if (this.dateTimeOriginal.isPresent) {
|
|
final value = this.dateTimeOriginal.value;
|
|
json[r'dateTimeOriginal'] = value;
|
|
}
|
|
if (this.description.isPresent) {
|
|
final value = this.description.value;
|
|
json[r'description'] = value;
|
|
}
|
|
if (this.isFavorite.isPresent) {
|
|
final value = this.isFavorite.value;
|
|
json[r'isFavorite'] = value;
|
|
}
|
|
if (this.latitude.isPresent) {
|
|
final value = this.latitude.value;
|
|
json[r'latitude'] = value;
|
|
}
|
|
if (this.livePhotoVideoId.isPresent) {
|
|
final value = this.livePhotoVideoId.value;
|
|
json[r'livePhotoVideoId'] = value;
|
|
}
|
|
if (this.longitude.isPresent) {
|
|
final value = this.longitude.value;
|
|
json[r'longitude'] = value;
|
|
}
|
|
if (this.rating.isPresent) {
|
|
final value = this.rating.value;
|
|
json[r'rating'] = value;
|
|
}
|
|
if (this.visibility.isPresent) {
|
|
final value = this.visibility.value;
|
|
json[r'visibility'] = value;
|
|
}
|
|
return json;
|
|
}
|
|
|
|
/// Returns a new [UpdateAssetDto] instance and imports its values from
|
|
/// [value] if it's a [Map], null otherwise.
|
|
// ignore: prefer_constructors_over_static_methods
|
|
static UpdateAssetDto? fromJson(dynamic value) {
|
|
upgradeDto(value, "UpdateAssetDto");
|
|
if (value is Map) {
|
|
final json = value.cast<String, dynamic>();
|
|
|
|
return UpdateAssetDto(
|
|
dateTimeOriginal: json.containsKey(r'dateTimeOriginal') ? Optional.present(mapValueOfType<String>(json, r'dateTimeOriginal')) : const Optional.absent(),
|
|
description: json.containsKey(r'description') ? Optional.present(mapValueOfType<String>(json, r'description')) : const Optional.absent(),
|
|
isFavorite: json.containsKey(r'isFavorite') ? Optional.present(mapValueOfType<bool>(json, r'isFavorite')) : const Optional.absent(),
|
|
latitude: json.containsKey(r'latitude') ? Optional.present(json[r'latitude'] == null ? null : num.parse('${json[r'latitude']}')) : const Optional.absent(),
|
|
livePhotoVideoId: json.containsKey(r'livePhotoVideoId') ? Optional.present(mapValueOfType<String>(json, r'livePhotoVideoId')) : const Optional.absent(),
|
|
longitude: json.containsKey(r'longitude') ? Optional.present(json[r'longitude'] == null ? null : num.parse('${json[r'longitude']}')) : const Optional.absent(),
|
|
rating: json.containsKey(r'rating') ? Optional.present(json[r'rating'] == null ? null : int.parse('${json[r'rating']}')) : const Optional.absent(),
|
|
visibility: json.containsKey(r'visibility') ? Optional.present(AssetVisibility.fromJson(json[r'visibility'])) : const Optional.absent(),
|
|
);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
static List<UpdateAssetDto> listFromJson(dynamic json, {bool growable = false,}) {
|
|
final result = <UpdateAssetDto>[];
|
|
if (json is List && json.isNotEmpty) {
|
|
for (final row in json) {
|
|
final value = UpdateAssetDto.fromJson(row);
|
|
if (value != null) {
|
|
result.add(value);
|
|
}
|
|
}
|
|
}
|
|
return result.toList(growable: growable);
|
|
}
|
|
|
|
static Map<String, UpdateAssetDto> mapFromJson(dynamic json) {
|
|
final map = <String, UpdateAssetDto>{};
|
|
if (json is Map && json.isNotEmpty) {
|
|
json = json.cast<String, dynamic>(); // ignore: parameter_assignments
|
|
for (final entry in json.entries) {
|
|
final value = UpdateAssetDto.fromJson(entry.value);
|
|
if (value != null) {
|
|
map[entry.key] = value;
|
|
}
|
|
}
|
|
}
|
|
return map;
|
|
}
|
|
|
|
// maps a json object with a list of UpdateAssetDto-objects as value to a dart map
|
|
static Map<String, List<UpdateAssetDto>> mapListFromJson(dynamic json, {bool growable = false,}) {
|
|
final map = <String, List<UpdateAssetDto>>{};
|
|
if (json is Map && json.isNotEmpty) {
|
|
// ignore: parameter_assignments
|
|
json = json.cast<String, dynamic>();
|
|
for (final entry in json.entries) {
|
|
map[entry.key] = UpdateAssetDto.listFromJson(entry.value, growable: growable,);
|
|
}
|
|
}
|
|
return map;
|
|
}
|
|
|
|
/// The list of required keys that must be present in a JSON.
|
|
static const requiredKeys = <String>{
|
|
};
|
|
}
|
|
|