toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  var map = <String, dynamic>{};
  map["id"] = id;
  map["serviceLabel"] = serviceLabel;
  map["placeId"] = placeId;
  map["serviceInfos"] = serviceInfos;
  map["infosUrl"] = infosUrl;
  map["ticketImageUrl"] = ticketImageUrl;
  map["ticketOptionalMessage"] = ticketOptionalMessage;
  map["typeId"] = typeId;
  map["thumbnailService"] = thumbnailService;
  map["visibleInOowoo"] = visibleInOowoo;
  map["maxDelayCancel"] = maxDelayCancel;
  map["price"] = price;
  map["currency"] = currency;
  map["nextTime"] = nextTime;
  map["allowBookWithoutPay"] = allowBookWithoutPay;
  map["allowBookWithoutConfirmation"] = allowBookWithoutConfirmation;
  return map;
}