|
@@ -1,273 +0,0 @@
|
|
|
-//
|
|
|
-// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
|
-//
|
|
|
-// @dart=2.12
|
|
|
-
|
|
|
-// 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 ImportAssetDto {
|
|
|
- /// Returns a new [ImportAssetDto] instance.
|
|
|
- ImportAssetDto({
|
|
|
- required this.assetPath,
|
|
|
- required this.deviceAssetId,
|
|
|
- required this.deviceId,
|
|
|
- this.duration,
|
|
|
- required this.fileCreatedAt,
|
|
|
- required this.fileModifiedAt,
|
|
|
- this.isArchived,
|
|
|
- this.isExternal,
|
|
|
- this.isFavorite,
|
|
|
- this.isOffline,
|
|
|
- this.isReadOnly = true,
|
|
|
- this.isVisible,
|
|
|
- this.libraryId,
|
|
|
- this.sidecarPath,
|
|
|
- });
|
|
|
-
|
|
|
- String assetPath;
|
|
|
-
|
|
|
- String deviceAssetId;
|
|
|
-
|
|
|
- String deviceId;
|
|
|
-
|
|
|
- ///
|
|
|
- /// 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.
|
|
|
- ///
|
|
|
- String? duration;
|
|
|
-
|
|
|
- DateTime fileCreatedAt;
|
|
|
-
|
|
|
- DateTime fileModifiedAt;
|
|
|
-
|
|
|
- ///
|
|
|
- /// 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.
|
|
|
- ///
|
|
|
- bool? isArchived;
|
|
|
-
|
|
|
- ///
|
|
|
- /// 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.
|
|
|
- ///
|
|
|
- bool? isExternal;
|
|
|
-
|
|
|
- ///
|
|
|
- /// 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.
|
|
|
- ///
|
|
|
- bool? isFavorite;
|
|
|
-
|
|
|
- ///
|
|
|
- /// 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.
|
|
|
- ///
|
|
|
- bool? isOffline;
|
|
|
-
|
|
|
- bool isReadOnly;
|
|
|
-
|
|
|
- ///
|
|
|
- /// 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.
|
|
|
- ///
|
|
|
- bool? isVisible;
|
|
|
-
|
|
|
- ///
|
|
|
- /// 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.
|
|
|
- ///
|
|
|
- String? libraryId;
|
|
|
-
|
|
|
- ///
|
|
|
- /// 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.
|
|
|
- ///
|
|
|
- String? sidecarPath;
|
|
|
-
|
|
|
- @override
|
|
|
- bool operator ==(Object other) => identical(this, other) || other is ImportAssetDto &&
|
|
|
- other.assetPath == assetPath &&
|
|
|
- other.deviceAssetId == deviceAssetId &&
|
|
|
- other.deviceId == deviceId &&
|
|
|
- other.duration == duration &&
|
|
|
- other.fileCreatedAt == fileCreatedAt &&
|
|
|
- other.fileModifiedAt == fileModifiedAt &&
|
|
|
- other.isArchived == isArchived &&
|
|
|
- other.isExternal == isExternal &&
|
|
|
- other.isFavorite == isFavorite &&
|
|
|
- other.isOffline == isOffline &&
|
|
|
- other.isReadOnly == isReadOnly &&
|
|
|
- other.isVisible == isVisible &&
|
|
|
- other.libraryId == libraryId &&
|
|
|
- other.sidecarPath == sidecarPath;
|
|
|
-
|
|
|
- @override
|
|
|
- int get hashCode =>
|
|
|
- // ignore: unnecessary_parenthesis
|
|
|
- (assetPath.hashCode) +
|
|
|
- (deviceAssetId.hashCode) +
|
|
|
- (deviceId.hashCode) +
|
|
|
- (duration == null ? 0 : duration!.hashCode) +
|
|
|
- (fileCreatedAt.hashCode) +
|
|
|
- (fileModifiedAt.hashCode) +
|
|
|
- (isArchived == null ? 0 : isArchived!.hashCode) +
|
|
|
- (isExternal == null ? 0 : isExternal!.hashCode) +
|
|
|
- (isFavorite == null ? 0 : isFavorite!.hashCode) +
|
|
|
- (isOffline == null ? 0 : isOffline!.hashCode) +
|
|
|
- (isReadOnly.hashCode) +
|
|
|
- (isVisible == null ? 0 : isVisible!.hashCode) +
|
|
|
- (libraryId == null ? 0 : libraryId!.hashCode) +
|
|
|
- (sidecarPath == null ? 0 : sidecarPath!.hashCode);
|
|
|
-
|
|
|
- @override
|
|
|
- String toString() => 'ImportAssetDto[assetPath=$assetPath, deviceAssetId=$deviceAssetId, deviceId=$deviceId, duration=$duration, fileCreatedAt=$fileCreatedAt, fileModifiedAt=$fileModifiedAt, isArchived=$isArchived, isExternal=$isExternal, isFavorite=$isFavorite, isOffline=$isOffline, isReadOnly=$isReadOnly, isVisible=$isVisible, libraryId=$libraryId, sidecarPath=$sidecarPath]';
|
|
|
-
|
|
|
- Map<String, dynamic> toJson() {
|
|
|
- final json = <String, dynamic>{};
|
|
|
- json[r'assetPath'] = this.assetPath;
|
|
|
- json[r'deviceAssetId'] = this.deviceAssetId;
|
|
|
- json[r'deviceId'] = this.deviceId;
|
|
|
- if (this.duration != null) {
|
|
|
- json[r'duration'] = this.duration;
|
|
|
- } else {
|
|
|
- // json[r'duration'] = null;
|
|
|
- }
|
|
|
- json[r'fileCreatedAt'] = this.fileCreatedAt.toUtc().toIso8601String();
|
|
|
- json[r'fileModifiedAt'] = this.fileModifiedAt.toUtc().toIso8601String();
|
|
|
- if (this.isArchived != null) {
|
|
|
- json[r'isArchived'] = this.isArchived;
|
|
|
- } else {
|
|
|
- // json[r'isArchived'] = null;
|
|
|
- }
|
|
|
- if (this.isExternal != null) {
|
|
|
- json[r'isExternal'] = this.isExternal;
|
|
|
- } else {
|
|
|
- // json[r'isExternal'] = null;
|
|
|
- }
|
|
|
- if (this.isFavorite != null) {
|
|
|
- json[r'isFavorite'] = this.isFavorite;
|
|
|
- } else {
|
|
|
- // json[r'isFavorite'] = null;
|
|
|
- }
|
|
|
- if (this.isOffline != null) {
|
|
|
- json[r'isOffline'] = this.isOffline;
|
|
|
- } else {
|
|
|
- // json[r'isOffline'] = null;
|
|
|
- }
|
|
|
- json[r'isReadOnly'] = this.isReadOnly;
|
|
|
- if (this.isVisible != null) {
|
|
|
- json[r'isVisible'] = this.isVisible;
|
|
|
- } else {
|
|
|
- // json[r'isVisible'] = null;
|
|
|
- }
|
|
|
- if (this.libraryId != null) {
|
|
|
- json[r'libraryId'] = this.libraryId;
|
|
|
- } else {
|
|
|
- // json[r'libraryId'] = null;
|
|
|
- }
|
|
|
- if (this.sidecarPath != null) {
|
|
|
- json[r'sidecarPath'] = this.sidecarPath;
|
|
|
- } else {
|
|
|
- // json[r'sidecarPath'] = null;
|
|
|
- }
|
|
|
- return json;
|
|
|
- }
|
|
|
-
|
|
|
- /// Returns a new [ImportAssetDto] instance and imports its values from
|
|
|
- /// [value] if it's a [Map], null otherwise.
|
|
|
- // ignore: prefer_constructors_over_static_methods
|
|
|
- static ImportAssetDto? fromJson(dynamic value) {
|
|
|
- if (value is Map) {
|
|
|
- final json = value.cast<String, dynamic>();
|
|
|
-
|
|
|
- return ImportAssetDto(
|
|
|
- assetPath: mapValueOfType<String>(json, r'assetPath')!,
|
|
|
- deviceAssetId: mapValueOfType<String>(json, r'deviceAssetId')!,
|
|
|
- deviceId: mapValueOfType<String>(json, r'deviceId')!,
|
|
|
- duration: mapValueOfType<String>(json, r'duration'),
|
|
|
- fileCreatedAt: mapDateTime(json, r'fileCreatedAt', '')!,
|
|
|
- fileModifiedAt: mapDateTime(json, r'fileModifiedAt', '')!,
|
|
|
- isArchived: mapValueOfType<bool>(json, r'isArchived'),
|
|
|
- isExternal: mapValueOfType<bool>(json, r'isExternal'),
|
|
|
- isFavorite: mapValueOfType<bool>(json, r'isFavorite'),
|
|
|
- isOffline: mapValueOfType<bool>(json, r'isOffline'),
|
|
|
- isReadOnly: mapValueOfType<bool>(json, r'isReadOnly') ?? true,
|
|
|
- isVisible: mapValueOfType<bool>(json, r'isVisible'),
|
|
|
- libraryId: mapValueOfType<String>(json, r'libraryId'),
|
|
|
- sidecarPath: mapValueOfType<String>(json, r'sidecarPath'),
|
|
|
- );
|
|
|
- }
|
|
|
- return null;
|
|
|
- }
|
|
|
-
|
|
|
- static List<ImportAssetDto> listFromJson(dynamic json, {bool growable = false,}) {
|
|
|
- final result = <ImportAssetDto>[];
|
|
|
- if (json is List && json.isNotEmpty) {
|
|
|
- for (final row in json) {
|
|
|
- final value = ImportAssetDto.fromJson(row);
|
|
|
- if (value != null) {
|
|
|
- result.add(value);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- return result.toList(growable: growable);
|
|
|
- }
|
|
|
-
|
|
|
- static Map<String, ImportAssetDto> mapFromJson(dynamic json) {
|
|
|
- final map = <String, ImportAssetDto>{};
|
|
|
- if (json is Map && json.isNotEmpty) {
|
|
|
- json = json.cast<String, dynamic>(); // ignore: parameter_assignments
|
|
|
- for (final entry in json.entries) {
|
|
|
- final value = ImportAssetDto.fromJson(entry.value);
|
|
|
- if (value != null) {
|
|
|
- map[entry.key] = value;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- return map;
|
|
|
- }
|
|
|
-
|
|
|
- // maps a json object with a list of ImportAssetDto-objects as value to a dart map
|
|
|
- static Map<String, List<ImportAssetDto>> mapListFromJson(dynamic json, {bool growable = false,}) {
|
|
|
- final map = <String, List<ImportAssetDto>>{};
|
|
|
- if (json is Map && json.isNotEmpty) {
|
|
|
- // ignore: parameter_assignments
|
|
|
- json = json.cast<String, dynamic>();
|
|
|
- for (final entry in json.entries) {
|
|
|
- map[entry.key] = ImportAssetDto.listFromJson(entry.value, growable: growable,);
|
|
|
- }
|
|
|
- }
|
|
|
- return map;
|
|
|
- }
|
|
|
-
|
|
|
- /// The list of required keys that must be present in a JSON.
|
|
|
- static const requiredKeys = <String>{
|
|
|
- 'assetPath',
|
|
|
- 'deviceAssetId',
|
|
|
- 'deviceId',
|
|
|
- 'fileCreatedAt',
|
|
|
- 'fileModifiedAt',
|
|
|
- };
|
|
|
-}
|
|
|
-
|