#ifndef COCOATWEET_API_OAUTH2_OAUTH2_H_ #define COCOATWEET_API_OAUTH2_OAUTH2_H_ #include "cocoatweet/api/interface/groupInterface.h" #include #include #include #include namespace CocoaTweet::API::OAuth2 { /// @brief class for using users/show endpoint class OAuth2 : public groupInterface { public: /// @brief primary constructor OAuth2() = default; /// @brief constructor which finally should to be called. /// @param[in] std::shared_ptr : pointer to /// OAuth object OAuth2(std::shared_ptr _oauth); const std::string token() const; }; } // namespace CocoaTweet::API::OAuth2 #endif