toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['id'] = this.id;
  data['qr'] = this.qr;
  data['expire'] = this.expire;
  data['qrActionType'] = this.qrActionType;
  data['duration'] = this.duration;
  data['content'] = this.content;
  data['currency'] = this.currency;
  data['price'] = this.price;
  data['proUniqueId'] = this.proUniqueId;
  data['title'] = this.title;
  data['shopPicture'] = this.shopPicture;
  data['shopDisplayName'] = this.shopDisplayName;
  data['commissionsType'] = this.commissionsType;
  data['pourcentage'] = this.pourcentage;
  data['stableCosts'] = this.stableCosts;
  data['homelidoPropertyInfo'] = this.homelidoPropertyInfo?.toJson();
  data['proInfo'] = this.proInfo?.toJson();
  data['service'] = this.service?.toJson();
  data['arckipelSportPrograms'] = this.arckipelSportPrograms?.toJson();
  return data;
}