open-project-flutter-api/lib/model/storage_files_model_parent.dart
2023-11-05 21:14:39 +01:00

352 lines
12 KiB
Dart

//
// 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 StorageFilesModelParent {
/// Returns a new [StorageFilesModelParent] instance.
StorageFilesModelParent({
required this.id,
required this.name,
this.mimeType,
this.size,
this.createdAt,
this.lastModifiedAt,
this.createdByName,
this.lastModifiedByName,
required this.type,
required this.location,
required this.links,
});
/// Linked file's id on the origin
String id;
/// Linked file's name on the origin
String name;
/// MIME type of the linked file. To link a folder entity, the custom MIME type `application/x-op-directory` MUST be provided. Otherwise it defaults back to an unknown MIME type.
///
/// 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? mimeType;
/// file size on origin in bytes
///
/// Minimum value: 0
///
/// 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.
///
int? size;
/// Timestamp of the creation datetime of the file on the origin
///
/// 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.
///
DateTime? createdAt;
/// Timestamp of the datetime of the last modification of the file on the origin
///
/// 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.
///
DateTime? lastModifiedAt;
/// Display name of the author that created the file on the origin
///
/// 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? createdByName;
/// Display name of the author that modified the file on the origin last
///
/// 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? lastModifiedByName;
StorageFilesModelParentTypeEnum? type;
/// Location identification for file in storage
Object? location;
StorageFileModelAllOfLinks links;
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is StorageFilesModelParent &&
other.id == id &&
other.name == name &&
other.mimeType == mimeType &&
other.size == size &&
other.createdAt == createdAt &&
other.lastModifiedAt == lastModifiedAt &&
other.createdByName == createdByName &&
other.lastModifiedByName == lastModifiedByName &&
other.type == type &&
other.location == location &&
other.links == links;
@override
int get hashCode =>
// ignore: unnecessary_parenthesis
(id.hashCode) +
(name.hashCode) +
(mimeType == null ? 0 : mimeType!.hashCode) +
(size == null ? 0 : size!.hashCode) +
(createdAt == null ? 0 : createdAt!.hashCode) +
(lastModifiedAt == null ? 0 : lastModifiedAt!.hashCode) +
(createdByName == null ? 0 : createdByName!.hashCode) +
(lastModifiedByName == null ? 0 : lastModifiedByName!.hashCode) +
(type == null ? 0 : type!.hashCode) +
(location == null ? 0 : location!.hashCode) +
(links.hashCode);
@override
String toString() =>
'StorageFilesModelParent[id=$id, name=$name, mimeType=$mimeType, size=$size, createdAt=$createdAt, lastModifiedAt=$lastModifiedAt, createdByName=$createdByName, lastModifiedByName=$lastModifiedByName, type=$type, location=$location, links=$links]';
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'id'] = this.id;
json[r'name'] = this.name;
if (this.mimeType != null) {
json[r'mimeType'] = this.mimeType;
} else {
json[r'mimeType'] = null;
}
if (this.size != null) {
json[r'size'] = this.size;
} else {
json[r'size'] = null;
}
if (this.createdAt != null) {
json[r'createdAt'] = this.createdAt!.toUtc().toIso8601String();
} else {
json[r'createdAt'] = null;
}
if (this.lastModifiedAt != null) {
json[r'lastModifiedAt'] = this.lastModifiedAt!.toUtc().toIso8601String();
} else {
json[r'lastModifiedAt'] = null;
}
if (this.createdByName != null) {
json[r'createdByName'] = this.createdByName;
} else {
json[r'createdByName'] = null;
}
if (this.lastModifiedByName != null) {
json[r'lastModifiedByName'] = this.lastModifiedByName;
} else {
json[r'lastModifiedByName'] = null;
}
if (this.type != null) {
json[r'_type'] = this.type;
} else {
json[r'_type'] = null;
}
if (this.location != null) {
json[r'location'] = this.location;
} else {
json[r'location'] = null;
}
json[r'_links'] = this.links;
return json;
}
/// Returns a new [StorageFilesModelParent] instance and imports its values from
/// [value] if it's a [Map], null otherwise.
// ignore: prefer_constructors_over_static_methods
static StorageFilesModelParent? fromJson(dynamic value) {
if (value is Map) {
final json = value.cast<String, dynamic>();
// Ensure that the map contains the required keys.
// Note 1: the values aren't checked for validity beyond being non-null.
// Note 2: this code is stripped in release mode!
assert(() {
requiredKeys.forEach((key) {
assert(json.containsKey(key),
'Required key "StorageFilesModelParent[$key]" is missing from JSON.');
assert(json[key] != null,
'Required key "StorageFilesModelParent[$key]" has a null value in JSON.');
});
return true;
}());
return StorageFilesModelParent(
id: mapValueOfType<String>(json, r'id')!,
name: mapValueOfType<String>(json, r'name')!,
mimeType: mapValueOfType<String>(json, r'mimeType'),
size: mapValueOfType<int>(json, r'size'),
createdAt: mapDateTime(json, r'createdAt', r''),
lastModifiedAt: mapDateTime(json, r'lastModifiedAt', r''),
createdByName: mapValueOfType<String>(json, r'createdByName'),
lastModifiedByName: mapValueOfType<String>(json, r'lastModifiedByName'),
type: StorageFilesModelParentTypeEnum.fromJson(json[r'_type']),
location: mapValueOfType<Object>(json, r'location'),
links: StorageFileModelAllOfLinks.fromJson(json[r'_links'])!,
);
}
return null;
}
static List<StorageFilesModelParent> listFromJson(
dynamic json, {
bool growable = false,
}) {
final result = <StorageFilesModelParent>[];
if (json is List && json.isNotEmpty) {
for (final row in json) {
final value = StorageFilesModelParent.fromJson(row);
if (value != null) {
result.add(value);
}
}
}
return result.toList(growable: growable);
}
static Map<String, StorageFilesModelParent> mapFromJson(dynamic json) {
final map = <String, StorageFilesModelParent>{};
if (json is Map && json.isNotEmpty) {
json = json.cast<String, dynamic>(); // ignore: parameter_assignments
for (final entry in json.entries) {
final value = StorageFilesModelParent.fromJson(entry.value);
if (value != null) {
map[entry.key] = value;
}
}
}
return map;
}
// maps a json object with a list of StorageFilesModelParent-objects as value to a dart map
static Map<String, List<StorageFilesModelParent>> mapListFromJson(
dynamic json, {
bool growable = false,
}) {
final map = <String, List<StorageFilesModelParent>>{};
if (json is Map && json.isNotEmpty) {
// ignore: parameter_assignments
json = json.cast<String, dynamic>();
for (final entry in json.entries) {
map[entry.key] = StorageFilesModelParent.listFromJson(
entry.value,
growable: growable,
);
}
}
return map;
}
/// The list of required keys that must be present in a JSON.
static const requiredKeys = <String>{
'id',
'name',
'_type',
'location',
'_links',
};
}
class StorageFilesModelParentTypeEnum {
/// Instantiate a new enum with the provided [value].
const StorageFilesModelParentTypeEnum._(this.value);
/// The underlying value of this enum member.
final Object value;
@override
String toString() => value.toString();
Object toJson() => value;
static const storageFile = StorageFilesModelParentTypeEnum._('StorageFile');
/// List of all possible values in this [enum][StorageFilesModelParentTypeEnum].
static const values = <StorageFilesModelParentTypeEnum>[
storageFile,
];
static StorageFilesModelParentTypeEnum? fromJson(dynamic value) =>
StorageFilesModelParentTypeEnumTypeTransformer().decode(value);
static List<StorageFilesModelParentTypeEnum> listFromJson(
dynamic json, {
bool growable = false,
}) {
final result = <StorageFilesModelParentTypeEnum>[];
if (json is List && json.isNotEmpty) {
for (final row in json) {
final value = StorageFilesModelParentTypeEnum.fromJson(row);
if (value != null) {
result.add(value);
}
}
}
return result.toList(growable: growable);
}
}
/// Transformation class that can [encode] an instance of [StorageFilesModelParentTypeEnum] to Object,
/// and [decode] dynamic data back to [StorageFilesModelParentTypeEnum].
class StorageFilesModelParentTypeEnumTypeTransformer {
factory StorageFilesModelParentTypeEnumTypeTransformer() =>
_instance ??= const StorageFilesModelParentTypeEnumTypeTransformer._();
const StorageFilesModelParentTypeEnumTypeTransformer._();
Object encode(StorageFilesModelParentTypeEnum data) => data.value;
/// Decodes a [dynamic value][data] to a StorageFilesModelParentTypeEnum.
///
/// If [allowNull] is true and the [dynamic value][data] cannot be decoded successfully,
/// then null is returned. However, if [allowNull] is false and the [dynamic value][data]
/// cannot be decoded successfully, then an [UnimplementedError] is thrown.
///
/// The [allowNull] is very handy when an API changes and a new enum value is added or removed,
/// and users are still using an old app with the old code.
StorageFilesModelParentTypeEnum? decode(dynamic data,
{bool allowNull = true}) {
if (data != null) {
switch (data) {
case 'StorageFile':
return StorageFilesModelParentTypeEnum.storageFile;
default:
if (!allowNull) {
throw ArgumentError('Unknown enum value to decode: $data');
}
}
}
return null;
}
/// Singleton [StorageFilesModelParentTypeEnumTypeTransformer] instance.
static StorageFilesModelParentTypeEnumTypeTransformer? _instance;
}