product recommendations api integration, content bytes
This commit is contained in:
@@ -182,6 +182,7 @@ class NewReleaseAudio {
|
||||
String? title;
|
||||
String? file;
|
||||
int? categoryId;
|
||||
String? link;
|
||||
String? image;
|
||||
String? isActive;
|
||||
String? createdAt;
|
||||
@@ -195,6 +196,7 @@ class NewReleaseAudio {
|
||||
this.categoryId,
|
||||
this.image,
|
||||
this.isActive,
|
||||
this.link,
|
||||
this.createdAt,
|
||||
this.formattedCreatedAt,
|
||||
this.fullCreatedAt});
|
||||
@@ -205,6 +207,7 @@ class NewReleaseAudio {
|
||||
file = json['file'];
|
||||
categoryId = json['category_id'];
|
||||
image = json['image'];
|
||||
link = json['link'];
|
||||
isActive = json['is_active'];
|
||||
createdAt = json['created_at'];
|
||||
formattedCreatedAt = json['formatted_created_at'];
|
||||
@@ -218,6 +221,7 @@ class NewReleaseAudio {
|
||||
data['file'] = file;
|
||||
data['category_id'] = categoryId;
|
||||
data['image'] = image;
|
||||
data['link'] = link;
|
||||
data['is_active'] = isActive;
|
||||
data['created_at'] = createdAt;
|
||||
data['formatted_created_at'] = formattedCreatedAt;
|
||||
|
||||
Reference in New Issue
Block a user