Interaction.fromJson constructor
Implementation
factory Interaction.fromJson(Map<String, dynamic> json) {
return Interaction(
date: json["date"],
languageIsoCode: json["language_iso_code"],
version: json["version"],
fingerprint: json["fingerprint"],
customerPlaceCode: json["customer_place_code"],
platform: json["platform"],
publicationReleasedUuid: json["publication_released_uuid"],
identifier: json["identifier"],
loan: json["loan"],
);
}