441 lines
12 KiB
Dart
441 lines
12 KiB
Dart
class HomeModel {
|
|
String? status;
|
|
int? statusCode;
|
|
String? message;
|
|
Data? data;
|
|
|
|
HomeModel({this.status, this.statusCode, this.message, this.data});
|
|
|
|
HomeModel.fromJson(Map<String, dynamic> json) {
|
|
status = json['status'];
|
|
statusCode = json['status_code'];
|
|
message = json['message'];
|
|
data = json['data'] != null ? new Data.fromJson(json['data']) : null;
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['status'] = this.status;
|
|
data['status_code'] = this.statusCode;
|
|
data['message'] = this.message;
|
|
if (this.data != null) {
|
|
data['data'] = this.data!.toJson();
|
|
}
|
|
return data;
|
|
}
|
|
}
|
|
|
|
class Data {
|
|
List<ExploreTheUnseenActiveCalls>? exploreTheUnseenActiveCalls;
|
|
List<ExploreTheUnseenExitedCalls>? exploreTheUnseenExitedCalls;
|
|
UserData? userData;
|
|
List<Products>? products;
|
|
ContentByteVideo? contentByteVideo;
|
|
|
|
Data(
|
|
{this.exploreTheUnseenActiveCalls,
|
|
this.exploreTheUnseenExitedCalls,
|
|
this.userData,
|
|
this.products,
|
|
this.contentByteVideo});
|
|
|
|
Data.fromJson(Map<String, dynamic> json) {
|
|
if (json['explore_the_unseen_active_calls'] != null) {
|
|
exploreTheUnseenActiveCalls = <ExploreTheUnseenActiveCalls>[];
|
|
json['explore_the_unseen_active_calls'].forEach((v) {
|
|
exploreTheUnseenActiveCalls!
|
|
.add(new ExploreTheUnseenActiveCalls.fromJson(v));
|
|
});
|
|
}
|
|
if (json['explore_the_unseen_exited_calls'] != null) {
|
|
exploreTheUnseenExitedCalls = <ExploreTheUnseenExitedCalls>[];
|
|
json['explore_the_unseen_exited_calls'].forEach((v) {
|
|
exploreTheUnseenExitedCalls!
|
|
.add(new ExploreTheUnseenExitedCalls.fromJson(v));
|
|
});
|
|
}
|
|
userData = json['user_data'] != null
|
|
? new UserData.fromJson(json['user_data'])
|
|
: null;
|
|
if (json['products'] != null) {
|
|
products = <Products>[];
|
|
json['products'].forEach((v) {
|
|
products!.add(new Products.fromJson(v));
|
|
});
|
|
}
|
|
contentByteVideo = json['content_byte_video'] != null
|
|
? new ContentByteVideo.fromJson(json['content_byte_video'])
|
|
: null;
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
if (this.exploreTheUnseenActiveCalls != null) {
|
|
data['explore_the_unseen_active_calls'] =
|
|
this.exploreTheUnseenActiveCalls!.map((v) => v.toJson()).toList();
|
|
}
|
|
if (this.exploreTheUnseenExitedCalls != null) {
|
|
data['explore_the_unseen_exited_calls'] =
|
|
this.exploreTheUnseenExitedCalls!.map((v) => v.toJson()).toList();
|
|
}
|
|
if (this.userData != null) {
|
|
data['user_data'] = this.userData!.toJson();
|
|
}
|
|
if (this.products != null) {
|
|
data['products'] = this.products!.map((v) => v.toJson()).toList();
|
|
}
|
|
if (this.contentByteVideo != null) {
|
|
data['content_byte_video'] = this.contentByteVideo!.toJson();
|
|
}
|
|
return data;
|
|
}
|
|
}
|
|
|
|
class ExploreTheUnseenActiveCalls {
|
|
int? id;
|
|
int? manageProductXid;
|
|
int? recommendationActionsXid;
|
|
String? stockName;
|
|
String? instrumentKey;
|
|
String? stockImage;
|
|
String? qty;
|
|
String? duration;
|
|
String? currentPrice;
|
|
String? buyPrice;
|
|
String? targetPrice;
|
|
String? stopLoss;
|
|
int? isSendRecommendationNow;
|
|
String? scheduleDateTime;
|
|
String? createdAt;
|
|
ProductData? productData;
|
|
ActionData? actionData;
|
|
|
|
ExploreTheUnseenActiveCalls(
|
|
{this.id,
|
|
this.manageProductXid,
|
|
this.recommendationActionsXid,
|
|
this.stockName,
|
|
this.instrumentKey,
|
|
this.stockImage,
|
|
this.qty,
|
|
this.duration,
|
|
this.currentPrice,
|
|
this.buyPrice,
|
|
this.targetPrice,
|
|
this.stopLoss,
|
|
this.isSendRecommendationNow,
|
|
this.scheduleDateTime,
|
|
this.createdAt,
|
|
this.productData,
|
|
this.actionData});
|
|
|
|
ExploreTheUnseenActiveCalls.fromJson(Map<String, dynamic> json) {
|
|
id = json['id'];
|
|
manageProductXid = json['manage_product_xid'];
|
|
recommendationActionsXid = json['recommendation_actions_xid'];
|
|
stockName = json['stock_name'];
|
|
instrumentKey = json['instrument_key'];
|
|
stockImage = json['stock_image'];
|
|
qty = json['qty'];
|
|
duration = json['duration'];
|
|
currentPrice = json['current_price'];
|
|
buyPrice = json['buy_price'];
|
|
targetPrice = json['target_price'];
|
|
stopLoss = json['stop_loss'];
|
|
isSendRecommendationNow = json['is_send_recommendation_now'];
|
|
scheduleDateTime = json['schedule_date_time'];
|
|
createdAt = json['created_at'];
|
|
productData = json['product_data'] != null
|
|
? new ProductData.fromJson(json['product_data'])
|
|
: null;
|
|
actionData = json['action_data'] != null
|
|
? new ActionData.fromJson(json['action_data'])
|
|
: null;
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['id'] = this.id;
|
|
data['manage_product_xid'] = this.manageProductXid;
|
|
data['recommendation_actions_xid'] = this.recommendationActionsXid;
|
|
data['stock_name'] = this.stockName;
|
|
data['instrument_key'] = this.instrumentKey;
|
|
data['stock_image'] = this.stockImage;
|
|
data['qty'] = this.qty;
|
|
data['duration'] = this.duration;
|
|
data['current_price'] = this.currentPrice;
|
|
data['buy_price'] = this.buyPrice;
|
|
data['target_price'] = this.targetPrice;
|
|
data['stop_loss'] = this.stopLoss;
|
|
data['is_send_recommendation_now'] = this.isSendRecommendationNow;
|
|
data['schedule_date_time'] = this.scheduleDateTime;
|
|
data['created_at'] = this.createdAt;
|
|
if (this.productData != null) {
|
|
data['product_data'] = this.productData!.toJson();
|
|
}
|
|
if (this.actionData != null) {
|
|
data['action_data'] = this.actionData!.toJson();
|
|
}
|
|
return data;
|
|
}
|
|
}
|
|
|
|
class ExploreTheUnseenExitedCalls {
|
|
int? id;
|
|
int? manageProductXid;
|
|
int? recommendationActionsXid;
|
|
String? stockName;
|
|
String? instrumentKey;
|
|
String? stockImage;
|
|
String? qty;
|
|
String? duration;
|
|
String? currentPrice;
|
|
String? buyPrice;
|
|
String? targetPrice;
|
|
String? stopLoss;
|
|
int? isSendRecommendationNow;
|
|
String? scheduleDateTime;
|
|
String? createdAt;
|
|
ProductData? productData;
|
|
ActionData? actionData;
|
|
|
|
ExploreTheUnseenExitedCalls(
|
|
{this.id,
|
|
this.manageProductXid,
|
|
this.recommendationActionsXid,
|
|
this.stockName,
|
|
this.instrumentKey,
|
|
this.stockImage,
|
|
this.qty,
|
|
this.duration,
|
|
this.currentPrice,
|
|
this.buyPrice,
|
|
this.targetPrice,
|
|
this.stopLoss,
|
|
this.isSendRecommendationNow,
|
|
this.scheduleDateTime,
|
|
this.createdAt,
|
|
this.productData,
|
|
this.actionData});
|
|
|
|
ExploreTheUnseenExitedCalls.fromJson(Map<String, dynamic> json) {
|
|
id = json['id'];
|
|
manageProductXid = json['manage_product_xid'];
|
|
recommendationActionsXid = json['recommendation_actions_xid'];
|
|
stockName = json['stock_name'];
|
|
instrumentKey = json['instrument_key'];
|
|
stockImage = json['stock_image'];
|
|
qty = json['qty'];
|
|
duration = json['duration'];
|
|
currentPrice = json['current_price'];
|
|
buyPrice = json['buy_price'];
|
|
targetPrice = json['target_price'];
|
|
stopLoss = json['stop_loss'];
|
|
isSendRecommendationNow = json['is_send_recommendation_now'];
|
|
scheduleDateTime = json['schedule_date_time'];
|
|
createdAt = json['created_at'];
|
|
productData = json['product_data'] != null
|
|
? new ProductData.fromJson(json['product_data'])
|
|
: null;
|
|
actionData = json['action_data'] != null
|
|
? new ActionData.fromJson(json['action_data'])
|
|
: null;
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['id'] = this.id;
|
|
data['manage_product_xid'] = this.manageProductXid;
|
|
data['recommendation_actions_xid'] = this.recommendationActionsXid;
|
|
data['stock_name'] = this.stockName;
|
|
data['instrument_key'] = this.instrumentKey;
|
|
data['stock_image'] = this.stockImage;
|
|
data['qty'] = this.qty;
|
|
data['duration'] = this.duration;
|
|
data['current_price'] = this.currentPrice;
|
|
data['buy_price'] = this.buyPrice;
|
|
data['target_price'] = this.targetPrice;
|
|
data['stop_loss'] = this.stopLoss;
|
|
data['is_send_recommendation_now'] = this.isSendRecommendationNow;
|
|
data['schedule_date_time'] = this.scheduleDateTime;
|
|
data['created_at'] = this.createdAt;
|
|
if (this.productData != null) {
|
|
data['product_data'] = this.productData!.toJson();
|
|
}
|
|
if (this.actionData != null) {
|
|
data['action_data'] = this.actionData!.toJson();
|
|
}
|
|
return data;
|
|
}
|
|
}
|
|
|
|
class ProductData {
|
|
int? id;
|
|
String? productName;
|
|
int? isActive;
|
|
String? createdAt;
|
|
|
|
ProductData({this.id, this.productName, this.isActive, this.createdAt});
|
|
|
|
ProductData.fromJson(Map<String, dynamic> json) {
|
|
id = json['id'];
|
|
productName = json['product_name'];
|
|
isActive = json['is_active'];
|
|
createdAt = json['created_at'];
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['id'] = this.id;
|
|
data['product_name'] = this.productName;
|
|
data['is_active'] = this.isActive;
|
|
data['created_at'] = this.createdAt;
|
|
return data;
|
|
}
|
|
}
|
|
|
|
class ActionData {
|
|
int? id;
|
|
String? name;
|
|
int? isActive;
|
|
String? createdAt;
|
|
|
|
ActionData({this.id, this.name, this.isActive, this.createdAt});
|
|
|
|
ActionData.fromJson(Map<String, dynamic> json) {
|
|
id = json['id'];
|
|
name = json['name'];
|
|
isActive = json['is_active'];
|
|
createdAt = json['created_at'];
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['id'] = this.id;
|
|
data['name'] = this.name;
|
|
data['is_active'] = this.isActive;
|
|
data['created_at'] = this.createdAt;
|
|
return data;
|
|
}
|
|
}
|
|
|
|
class UserData {
|
|
int? id;
|
|
String? firstName;
|
|
String? lastName;
|
|
String? userName;
|
|
String? profilePhoto;
|
|
String? isActive;
|
|
String? createdAt;
|
|
|
|
UserData(
|
|
{this.id,
|
|
this.firstName,
|
|
this.lastName,
|
|
this.userName,
|
|
this.profilePhoto,
|
|
this.isActive,
|
|
this.createdAt});
|
|
|
|
UserData.fromJson(Map<String, dynamic> json) {
|
|
id = json['id'];
|
|
firstName = json['first_name'];
|
|
lastName = json['last_name'];
|
|
userName = json['user_name'];
|
|
profilePhoto = json['profile_photo'];
|
|
isActive = json['is_active'];
|
|
createdAt = json['created_at'];
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['id'] = this.id;
|
|
data['first_name'] = this.firstName;
|
|
data['last_name'] = this.lastName;
|
|
data['user_name'] = this.userName;
|
|
data['profile_photo'] = this.profilePhoto;
|
|
data['is_active'] = this.isActive;
|
|
data['created_at'] = this.createdAt;
|
|
return data;
|
|
}
|
|
}
|
|
|
|
class Products {
|
|
int? id;
|
|
String? title;
|
|
String? createdAt;
|
|
|
|
Products({this.id, this.title, this.createdAt});
|
|
|
|
Products.fromJson(Map<String, dynamic> json) {
|
|
id = json['id'];
|
|
title = json['title'];
|
|
createdAt = json['created_at'];
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['id'] = this.id;
|
|
data['title'] = this.title;
|
|
data['created_at'] = this.createdAt;
|
|
return data;
|
|
}
|
|
}
|
|
|
|
class ContentByteVideo {
|
|
int? id;
|
|
String? contentType;
|
|
String? title;
|
|
String? description;
|
|
String? tags;
|
|
String? file;
|
|
int? categoryId;
|
|
String? image;
|
|
String? isActive;
|
|
String? createdAt;
|
|
String? link;
|
|
|
|
ContentByteVideo(
|
|
{this.id,
|
|
this.contentType,
|
|
this.title,
|
|
this.description,
|
|
this.tags,
|
|
this.file,
|
|
this.categoryId,
|
|
this.image,
|
|
this.isActive,
|
|
this.createdAt,
|
|
this.link});
|
|
|
|
ContentByteVideo.fromJson(Map<String, dynamic> json) {
|
|
id = json['id'];
|
|
contentType = json['content_type'];
|
|
title = json['title'];
|
|
description = json['description'];
|
|
tags = json['tags'];
|
|
file = json['file'];
|
|
categoryId = json['category_id'];
|
|
image = json['image'];
|
|
isActive = json['is_active'];
|
|
createdAt = json['created_at'];
|
|
link = json['link'];
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
|
data['id'] = this.id;
|
|
data['content_type'] = this.contentType;
|
|
data['title'] = this.title;
|
|
data['description'] = this.description;
|
|
data['tags'] = this.tags;
|
|
data['file'] = this.file;
|
|
data['category_id'] = this.categoryId;
|
|
data['image'] = this.image;
|
|
data['is_active'] = this.isActive;
|
|
data['created_at'] = this.createdAt;
|
|
data['link'] = this.link;
|
|
return data;
|
|
}
|
|
}
|