RefundCheckAtol.fromJson constructor
Implementation
factory RefundCheckAtol.fromJson(Map<String, dynamic> json) =>
RefundCheckAtol(
externalId: json["external_id"],
receipt: Receipt.fromJson(json["receipt"]),
service: Service.fromJson(json["service"]),
timestamp: json["timestamp"],
);