127 lines
4.9 KiB
Dart
127 lines
4.9 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'message.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
Message _$MessageFromJson(Map<String, dynamic> json) {
|
|
return Message(
|
|
id: json['id'] as String?,
|
|
text: json['text'] as String?,
|
|
type: json['type'] as String? ?? 'regular',
|
|
attachments: (json['attachments'] as List<dynamic>?)
|
|
?.map((e) => Attachment.fromJson(e as Map<String, dynamic>))
|
|
.toList() ??
|
|
[],
|
|
mentionedUsers: (json['mentioned_users'] as List<dynamic>?)
|
|
?.map((e) => User.fromJson(e as Map<String, dynamic>))
|
|
.toList() ??
|
|
[],
|
|
silent: json['silent'] as bool? ?? false,
|
|
shadowed: json['shadowed'] as bool? ?? false,
|
|
reactionCounts: (json['reaction_counts'] as Map<String, dynamic>?)?.map(
|
|
(k, e) => MapEntry(k, e as int),
|
|
),
|
|
reactionScores: (json['reaction_scores'] as Map<String, dynamic>?)?.map(
|
|
(k, e) => MapEntry(k, e as int),
|
|
),
|
|
latestReactions: (json['latest_reactions'] as List<dynamic>?)
|
|
?.map((e) => Reaction.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
ownReactions: (json['own_reactions'] as List<dynamic>?)
|
|
?.map((e) => Reaction.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
parentId: json['parent_id'] as String?,
|
|
quotedMessage: json['quoted_message'] == null
|
|
? null
|
|
: Message.fromJson(json['quoted_message'] as Map<String, dynamic>),
|
|
quotedMessageId: json['quoted_message_id'] as String?,
|
|
replyCount: json['reply_count'] as int?,
|
|
threadParticipants: (json['thread_participants'] as List<dynamic>?)
|
|
?.map((e) => User.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
showInChannel: json['show_in_channel'] as bool?,
|
|
command: json['command'] as String?,
|
|
createdAt: json['created_at'] == null
|
|
? null
|
|
: DateTime.parse(json['created_at'] as String),
|
|
updatedAt: json['updated_at'] == null
|
|
? null
|
|
: DateTime.parse(json['updated_at'] as String),
|
|
user: json['user'] == null
|
|
? null
|
|
: User.fromJson(json['user'] as Map<String, dynamic>),
|
|
pinned: json['pinned'] as bool? ?? false,
|
|
pinnedAt: json['pinned_at'] == null
|
|
? null
|
|
: DateTime.parse(json['pinned_at'] as String),
|
|
pinExpires: json['pin_expires'] == null
|
|
? null
|
|
: DateTime.parse(json['pin_expires'] as String),
|
|
pinnedBy: json['pinned_by'] == null
|
|
? null
|
|
: User.fromJson(json['pinned_by'] as Map<String, dynamic>),
|
|
extraData: json['extra_data'] as Map<String, dynamic>? ?? {},
|
|
deletedAt: json['deleted_at'] == null
|
|
? null
|
|
: DateTime.parse(json['deleted_at'] as String),
|
|
skipPush: json['skip_push'] as bool? ?? false,
|
|
);
|
|
}
|
|
|
|
Map<String, dynamic> _$MessageToJson(Message instance) {
|
|
final val = <String, dynamic>{
|
|
'id': instance.id,
|
|
'text': instance.text,
|
|
};
|
|
|
|
void writeNotNull(String key, dynamic value) {
|
|
if (value != null) {
|
|
val[key] = value;
|
|
}
|
|
}
|
|
|
|
writeNotNull('type', readonly(instance.type));
|
|
val['attachments'] = instance.attachments.map((e) => e.toJson()).toList();
|
|
val['mentioned_users'] = Serialization.userIds(instance.mentionedUsers);
|
|
writeNotNull('reaction_counts', readonly(instance.reactionCounts));
|
|
writeNotNull('reaction_scores', readonly(instance.reactionScores));
|
|
writeNotNull('latest_reactions', readonly(instance.latestReactions));
|
|
writeNotNull('own_reactions', readonly(instance.ownReactions));
|
|
val['parent_id'] = instance.parentId;
|
|
val['quoted_message'] = readonly(instance.quotedMessage);
|
|
val['quoted_message_id'] = instance.quotedMessageId;
|
|
writeNotNull('reply_count', readonly(instance.replyCount));
|
|
writeNotNull('thread_participants', readonly(instance.threadParticipants));
|
|
val['show_in_channel'] = instance.showInChannel;
|
|
val['silent'] = instance.silent;
|
|
val['skip_push'] = instance.skipPush;
|
|
writeNotNull('shadowed', readonly(instance.shadowed));
|
|
writeNotNull('command', readonly(instance.command));
|
|
writeNotNull('created_at', readonly(instance.createdAt));
|
|
writeNotNull('updated_at', readonly(instance.updatedAt));
|
|
writeNotNull('user', readonly(instance.user));
|
|
val['pinned'] = instance.pinned;
|
|
val['pinned_at'] = readonly(instance.pinnedAt);
|
|
val['pin_expires'] = instance.pinExpires?.toIso8601String();
|
|
val['pinned_by'] = readonly(instance.pinnedBy);
|
|
val['extra_data'] = instance.extraData;
|
|
writeNotNull('deleted_at', readonly(instance.deletedAt));
|
|
return val;
|
|
}
|
|
|
|
TranslatedMessage _$TranslatedMessageFromJson(Map<String, dynamic> json) {
|
|
return TranslatedMessage(
|
|
(json['i18n'] as Map<String, dynamic>?)?.map(
|
|
(k, e) => MapEntry(k, e as String),
|
|
),
|
|
);
|
|
}
|
|
|
|
Map<String, dynamic> _$TranslatedMessageToJson(TranslatedMessage instance) =>
|
|
<String, dynamic>{
|
|
'i18n': instance.i18n,
|
|
};
|