Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
archidekt_deck_listing_api_response.h
Go to the documentation of this file.
1#ifndef COCKATRICE_ARCHIDEKT_DECK_LISTING_API_RESPONSE_H
2#define COCKATRICE_ARCHIDEKT_DECK_LISTING_API_RESPONSE_H
3
5
6#include <QJsonObject>
7#include <QString>
8#include <QUrl>
9
11{
12
13public:
14 int count;
15 QUrl next;
16 QVector<ArchidektApiResponseDeckListingContainer> results;
17
18 void fromJson(const QJsonObject &json);
19 void debugPrint() const;
20};
21
22#endif // COCKATRICE_DECK_LISTING_API_RESPONSE_H
Definition archidekt_deck_listing_api_response.h:11
void debugPrint() const
Definition archidekt_deck_listing_api_response.cpp:20
QVector< ArchidektApiResponseDeckListingContainer > results
Definition archidekt_deck_listing_api_response.h:16
void fromJson(const QJsonObject &json)
Definition archidekt_deck_listing_api_response.cpp:6
QUrl next
Definition archidekt_deck_listing_api_response.h:15
int count
Definition archidekt_deck_listing_api_response.h:14