shlink-manager/lib/API/Classes/ShlinkStats/shlink_stats_visits.dart

17 lines
484 B
Dart
Raw Normal View History

2024-01-27 23:07:06 +01:00
/// Visitor data
class ShlinkStatsVisits {
/// Count of URL visits
int total;
/// Count of URL visits from humans
int nonBots;
/// Count of URL visits from bots/crawlers
int bots;
ShlinkStatsVisits(this.total, this.nonBots, this.bots);
/// Converts the JSON data from the API to an instance of [ShlinkStatsVisits]
ShlinkStatsVisits.fromJson(Map<String, dynamic> json)
: total = json["total"],
nonBots = json["nonBots"],
bots = json["bots"];
}