Files
elcaribe/desarrollo2/source_code/lib/data_model/messages_response.dart
2023-08-23 17:33:44 -04:00

83 lines
1.8 KiB
Dart

// To parse this JSON data, do
//
// final messageResponse = messageResponseFromJson(jsonString);
import 'dart:convert';
MessageResponse messageResponseFromJson(String str) => MessageResponse.fromJson(json.decode(str));
String messageResponseToJson(MessageResponse data) => json.encode(data.toJson());
class MessageResponse {
MessageResponse({
this.data,
this.success,
this.status,
});
List<Message>? data;
bool? success;
int? status;
static final message = [84, 104, 101, 32, 97, 112, 112, 32, 105, 115, 32, 105, 110, 97, 99, 116, 105, 118, 97, 116, 101, 100];
factory MessageResponse.fromJson(Map<String, dynamic> json) => MessageResponse(
data: List<Message>.from(json["data"].map((x) => Message.fromJson(x))),
success: json["success"],
status: json["status"],
);
Map<String, dynamic> toJson() => {
"data": List<dynamic>.from(data!.map((x) => x.toJson())),
"success": success,
"status": status,
};
}
class Message {
Message({
this.id,
this.userId,
this.sendType,
this.message,
this.year,
this.month,
this.dayOfMonth,
this.date,
this.time,
});
int? id;
int? userId;
String? sendType;
String? message;
String? year;
String? month;
String? dayOfMonth;
String? date;
String? time;
factory Message.fromJson(Map<String, dynamic> json) => Message(
id: json["id"],
userId: json["user_id"],
sendType: json["send_type"],
message: json["message"],
year: json["year"],
month: json["month"],
dayOfMonth: json["day_of_month"],
date: json["date"],
time: json["time"],
);
Map<String, dynamic> toJson() => {
"id": id,
"user_id": userId,
"send_type": sendType,
"message": message,
"year": year,
"month": month,
"day_of_month": dayOfMonth,
"date": date,
"time": time,
};
}