Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
edhrec_api_response_card_list.h
Go to the documentation of this file.
1
6
7#ifndef CARD_LIST_H
8#define CARD_LIST_H
9
11
12#include <QJsonArray>
13#include <QList>
14#include <QString>
15
17{
18public:
19 QString header;
20 QList<EdhrecApiResponseCardDetails> cardViews;
21
22 // Default constructor
24
25 // Method to populate the object from a JSON object
26 void fromJson(const QJsonObject &json);
27
28 // Debug method to print out the data
29 void debugPrint() const;
30};
31
32#endif // CARD_LIST_H
EdhrecApiResponseCardList()
Definition edhrec_api_response_card_list.cpp:5
void debugPrint() const
Definition edhrec_api_response_card_list.cpp:24
void fromJson(const QJsonObject &json)
Definition edhrec_api_response_card_list.cpp:9
QList< EdhrecApiResponseCardDetails > cardViews
Definition edhrec_api_response_card_list.h:20
QString header
Definition edhrec_api_response_card_list.h:19