| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /*
- This file is part of Telegram Desktop,
- the official desktop application for the Telegram messaging service.
- For license and copyright information please follow this link:
- https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
- */
- #pragma once
- #include "stripe/stripe_card.h"
- #include <QtCore/QDateTime>
- class QJsonObject;
- namespace Stripe {
- class Token {
- public:
- Token(const Token &other) = default;
- Token &operator=(const Token &other) = default;
- Token(Token &&other) = default;
- Token &operator=(Token &&other) = default;
- ~Token() = default;
- [[nodiscard]] QString tokenId() const;
- [[nodiscard]] bool livemode() const;
- [[nodiscard]] Card card() const;
- [[nodiscard]] static Token Empty();
- [[nodiscard]] static Token DecodedObjectFromAPIResponse(
- QJsonObject object);
- [[nodiscard]] bool empty() const;
- [[nodiscard]] explicit operator bool() const {
- return !empty();
- }
- private:
- Token(QString tokenId, bool livemode, QDateTime created);
- QString _tokenId;
- bool _livemode = false;
- QDateTime _created;
- Card _card = Card::Empty();
- };
- } // namespace Stripe
|