factory Limit.fromJson(Map<String, dynamic> json) { return Limit( max: json['Max'] as int?, type: json['Type'] as String?, ); }