platform/angel_serialize_generator/test/models/author.g.dart

441 lines
11 KiB
Dart
Raw Normal View History

2017-12-07 07:08:32 +00:00
// GENERATED CODE - DO NOT MODIFY BY HAND
part of angel_serialize.test.models.author;
// **************************************************************************
2018-06-29 04:11:57 +00:00
// JsonModelGenerator
2017-12-07 07:08:32 +00:00
// **************************************************************************
@generatedSerializable
2018-02-27 19:57:05 +00:00
class Author extends _Author {
Author(
{this.id,
@required this.name,
@required this.age,
2018-05-15 19:01:13 +00:00
List<Book> books,
2018-02-27 19:57:05 +00:00
this.newestBook,
2018-02-28 00:36:53 +00:00
this.secret,
this.obscured,
2018-02-27 19:57:05 +00:00
this.createdAt,
2018-05-15 19:01:13 +00:00
this.updatedAt})
: this.books = new List.unmodifiable(books ?? []);
2018-02-27 19:57:05 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final String id;
2017-12-07 07:08:32 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final String name;
2017-12-07 07:08:32 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final int age;
2017-12-07 07:08:32 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:50:46 +00:00
final List<Book> books;
2017-12-07 07:08:32 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final Book newestBook;
2017-12-07 07:08:32 +00:00
2018-02-28 00:36:53 +00:00
@override
final String secret;
@override
final String obscured;
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final DateTime createdAt;
2017-12-07 07:08:32 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final DateTime updatedAt;
2018-02-28 00:36:53 +00:00
Author copyWith(
{String id,
String name,
int age,
List<Book> books,
Book newestBook,
String secret,
String obscured,
2018-02-28 00:36:53 +00:00
DateTime createdAt,
DateTime updatedAt}) {
return new Author(
id: id ?? this.id,
name: name ?? this.name,
age: age ?? this.age,
books: books ?? this.books,
newestBook: newestBook ?? this.newestBook,
secret: secret ?? this.secret,
obscured: obscured ?? this.obscured,
2018-02-28 00:36:53 +00:00
createdAt: createdAt ?? this.createdAt,
updatedAt: updatedAt ?? this.updatedAt);
}
2018-02-28 01:49:14 +00:00
2018-05-13 18:02:47 +00:00
bool operator ==(other) {
return other is _Author &&
other.id == id &&
other.name == name &&
other.age == age &&
const ListEquality<Book>(const DefaultEquality<Book>())
.equals(other.books, books) &&
other.newestBook == newestBook &&
other.secret == secret &&
other.obscured == obscured &&
other.createdAt == createdAt &&
other.updatedAt == updatedAt;
}
2018-11-03 07:36:59 +00:00
@override
int get hashCode {
return hashObjects([
id,
name,
age,
books,
newestBook,
secret,
obscured,
createdAt,
updatedAt
]);
}
2018-02-28 01:49:14 +00:00
Map<String, dynamic> toJson() {
return AuthorSerializer.toMap(this);
}
2017-12-07 07:08:32 +00:00
}
@generatedSerializable
2018-02-27 19:57:05 +00:00
class Library extends _Library {
2018-05-15 19:01:13 +00:00
Library(
{this.id, Map<String, Book> collection, this.createdAt, this.updatedAt})
: this.collection = new Map.unmodifiable(collection ?? {});
2018-02-27 19:57:05 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final String id;
2017-12-07 07:08:32 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:50:46 +00:00
final Map<String, Book> collection;
2017-12-07 07:08:32 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final DateTime createdAt;
2017-12-07 07:08:32 +00:00
2018-02-28 00:36:53 +00:00
@override
2018-02-27 19:47:42 +00:00
final DateTime updatedAt;
2018-02-28 00:36:53 +00:00
Library copyWith(
{String id,
Map<String, Book> collection,
DateTime createdAt,
DateTime updatedAt}) {
return new Library(
id: id ?? this.id,
collection: collection ?? this.collection,
createdAt: createdAt ?? this.createdAt,
updatedAt: updatedAt ?? this.updatedAt);
}
2018-02-28 01:49:14 +00:00
2018-05-13 18:02:47 +00:00
bool operator ==(other) {
return other is _Library &&
other.id == id &&
const MapEquality<String, Book>(
keys: const DefaultEquality<String>(),
values: const DefaultEquality<Book>())
.equals(other.collection, collection) &&
other.createdAt == createdAt &&
other.updatedAt == updatedAt;
}
2018-11-03 07:36:59 +00:00
@override
int get hashCode {
return hashObjects([id, collection, createdAt, updatedAt]);
}
2018-02-28 01:49:14 +00:00
Map<String, dynamic> toJson() {
return LibrarySerializer.toMap(this);
}
2017-12-07 07:08:32 +00:00
}
2018-05-13 17:23:40 +00:00
@generatedSerializable
2018-05-13 17:23:40 +00:00
class Bookmark extends _Bookmark {
Bookmark(Book book,
2018-05-13 18:02:47 +00:00
{this.id,
2018-05-15 19:01:13 +00:00
List<int> history,
2018-05-15 19:33:57 +00:00
@required this.page,
2018-05-13 18:02:47 +00:00
this.comment,
this.createdAt,
this.updatedAt})
2018-05-15 19:01:13 +00:00
: this.history = new List.unmodifiable(history ?? []),
super(book);
2018-05-13 17:23:40 +00:00
@override
final String id;
2018-05-13 18:02:47 +00:00
@override
final List<int> history;
2018-05-13 17:23:40 +00:00
@override
final int page;
@override
final String comment;
@override
final DateTime createdAt;
@override
final DateTime updatedAt;
Bookmark copyWith(Book book,
{String id,
2018-05-13 18:02:47 +00:00
List<int> history,
2018-05-13 17:23:40 +00:00
int page,
String comment,
DateTime createdAt,
DateTime updatedAt}) {
return new Bookmark(book,
id: id ?? this.id,
2018-05-13 18:02:47 +00:00
history: history ?? this.history,
2018-05-13 17:23:40 +00:00
page: page ?? this.page,
comment: comment ?? this.comment,
createdAt: createdAt ?? this.createdAt,
updatedAt: updatedAt ?? this.updatedAt);
}
2018-05-13 18:02:47 +00:00
bool operator ==(other) {
return other is _Bookmark &&
other.id == id &&
const ListEquality<int>(const DefaultEquality<int>())
.equals(other.history, history) &&
other.page == page &&
other.comment == comment &&
other.createdAt == createdAt &&
other.updatedAt == updatedAt;
}
2018-11-03 07:36:59 +00:00
@override
int get hashCode {
return hashObjects([id, history, page, comment, createdAt, updatedAt]);
}
2018-05-13 17:23:40 +00:00
Map<String, dynamic> toJson() {
return BookmarkSerializer.toMap(this);
}
}
2018-12-08 20:53:49 +00:00
// **************************************************************************
// SerializerGenerator
// **************************************************************************
abstract class AuthorSerializer {
static Author fromMap(Map map) {
if (map['name'] == null) {
throw new FormatException("Missing required field 'name' on Author.");
}
if (map['age'] == null) {
throw new FormatException("Custom message for missing `age`");
}
return new Author(
id: map['id'] as String,
name: map['name'] as String,
age: map['age'] as int,
books: map['books'] is Iterable
? new List.unmodifiable(((map['books'] as Iterable)
.where((x) => x is Map) as Iterable<Map>)
.map(BookSerializer.fromMap))
: null,
newestBook: map['newest_book'] != null
? BookSerializer.fromMap(map['newest_book'] as Map)
: null,
obscured: map['obscured'] as String,
createdAt: map['created_at'] != null
? (map['created_at'] is DateTime
? (map['created_at'] as DateTime)
: DateTime.parse(map['created_at'].toString()))
: null,
updatedAt: map['updated_at'] != null
? (map['updated_at'] is DateTime
? (map['updated_at'] as DateTime)
: DateTime.parse(map['updated_at'].toString()))
: null);
}
static Map<String, dynamic> toMap(Author model) {
if (model == null) {
return null;
}
if (model.name == null) {
throw new FormatException("Missing required field 'name' on Author.");
}
if (model.age == null) {
throw new FormatException("Custom message for missing `age`");
}
return {
'id': model.id,
'name': model.name,
'age': model.age,
'books': model.books?.map((m) => m.toJson())?.toList(),
'newest_book': BookSerializer.toMap(model.newestBook),
'created_at': model.createdAt?.toIso8601String(),
'updated_at': model.updatedAt?.toIso8601String()
};
}
}
abstract class AuthorFields {
static const List<String> allFields = const <String>[
id,
name,
age,
books,
newestBook,
secret,
obscured,
createdAt,
updatedAt
];
static const String id = 'id';
static const String name = 'name';
static const String age = 'age';
static const String books = 'books';
static const String newestBook = 'newest_book';
static const String secret = 'secret';
static const String obscured = 'obscured';
static const String createdAt = 'created_at';
static const String updatedAt = 'updated_at';
}
abstract class LibrarySerializer {
static Library fromMap(Map map) {
return new Library(
id: map['id'] as String,
collection: map['collection'] is Map
? new Map.unmodifiable(
(map['collection'] as Map).keys.fold({}, (out, key) {
return out
..[key] = BookSerializer.fromMap(
((map['collection'] as Map)[key]) as Map);
}))
: null,
createdAt: map['created_at'] != null
? (map['created_at'] is DateTime
? (map['created_at'] as DateTime)
: DateTime.parse(map['created_at'].toString()))
: null,
updatedAt: map['updated_at'] != null
? (map['updated_at'] is DateTime
? (map['updated_at'] as DateTime)
: DateTime.parse(map['updated_at'].toString()))
: null);
}
static Map<String, dynamic> toMap(Library model) {
if (model == null) {
return null;
}
return {
'id': model.id,
'collection': model.collection.keys?.fold({}, (map, key) {
return map..[key] = BookSerializer.toMap(model.collection[key]);
}),
'created_at': model.createdAt?.toIso8601String(),
'updated_at': model.updatedAt?.toIso8601String()
};
}
}
abstract class LibraryFields {
static const List<String> allFields = const <String>[
id,
collection,
createdAt,
updatedAt
];
static const String id = 'id';
static const String collection = 'collection';
static const String createdAt = 'created_at';
static const String updatedAt = 'updated_at';
}
abstract class BookmarkSerializer {
static Bookmark fromMap(Map map, Book book) {
if (map['page'] == null) {
throw new FormatException("Missing required field 'page' on Bookmark.");
}
return new Bookmark(book,
id: map['id'] as String,
history: map['history'] is Iterable
? (map['history'] as Iterable).cast<int>().toList()
: null,
page: map['page'] as int,
comment: map['comment'] as String,
createdAt: map['created_at'] != null
? (map['created_at'] is DateTime
? (map['created_at'] as DateTime)
: DateTime.parse(map['created_at'].toString()))
: null,
updatedAt: map['updated_at'] != null
? (map['updated_at'] is DateTime
? (map['updated_at'] as DateTime)
: DateTime.parse(map['updated_at'].toString()))
: null);
}
static Map<String, dynamic> toMap(Bookmark model) {
if (model == null) {
return null;
}
if (model.page == null) {
throw new FormatException("Missing required field 'page' on Bookmark.");
}
return {
'id': model.id,
'history': model.history,
'page': model.page,
'comment': model.comment,
'created_at': model.createdAt?.toIso8601String(),
'updated_at': model.updatedAt?.toIso8601String()
};
}
}
abstract class BookmarkFields {
static const List<String> allFields = const <String>[
id,
history,
page,
comment,
createdAt,
updatedAt
];
static const String id = 'id';
static const String history = 'history';
static const String page = 'page';
static const String comment = 'comment';
static const String createdAt = 'created_at';
static const String updatedAt = 'updated_at';
}