toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data["placeId"] = this.placeId;
  data["placeCity"] = this.placeCity;
  data["placeLabel"] = this.placeLabel;
  data["placeLng"] = this.placeLng;
  data["placeLat"] = this.placeLat;
  data["placeCountry"] = this.placeCountry;
  data["placeCountryCode"] = this.placeCountryCode;
  data["placeZip"] = this.placeZip;
  data["placeStreet1"] = this.placeStreet1;
  data["placeStreet2"] = this.placeStreet2;
  data["utcModifier"] = this.utcModifier;
  data["id"] = this.id;
  data["name"] = this.name;
  data["authCode"] = this.authCode;
  data["ticketOptionalStr"] = this.ticketOptionalStr;
  data["arckipel"] = this.arckipel;
  data["label"] = this.label;
  data["description"] = this.description;
  data["productId"] = this.productId;
  data["productSerial"] = this.productSerial;
  data["statusLabel"] = this.statusLabel;
  data["statusColor"] = this.statusColor;
  data["pictureUrl"] = this.pictureUrl;
  data["password"] = this.password;
  data["terminalType"] = this.terminalType;
  data["terminalTypeName"] = this.terminalTypeName;
  data["warrantyUntil"] = this.warrantyUntil;
  data["purchasedAt"] = this.purchasedAt;
  data["macAddress"] = this.macAddress;
  data["moreInfos"] = this.moreInfos;
  data["timeSlide"] = this.timeSlide;
  return data;
}