AlpacaLibary  1.63
A closed source C++ bot for OSRS
ExchangeOffer.hpp
Go to the documentation of this file.
1 #ifndef EXCHANGEOFFER_HPP_INCLUDED
2 #define EXCHANGEOFFER_HPP_INCLUDED
3 
4 #include "../JavaClass/Object.hpp"
5 #include "../JavaClass/Class.hpp"
6 #include <cstdint>
7 
8 namespace Internal
9 {
10  class ExchangeOffer : public Object
11  {
12  public:
13  ExchangeOffer(const void* Obj);
14 
15  ExchangeOffer() = default;
17  ExchangeOffer(const ExchangeOffer& Obj) = default;
20 
21  static Class GetClass();
22 
23  std::int32_t GetAmountTraded() const;
24  std::int32_t GetItemID() const;
25  std::int32_t GetPrice() const;
26  std::int8_t GetProgress() const;
27  std::int32_t GetSpent() const;
28  std::int32_t GetTotalAmount() const;
29 
30  };
31 }
32 
33 #endif // EXCHANGEOFFER_HPP_INCLUDED
ExchangeOffer(const ExchangeOffer &Obj)=default
std::int8_t GetProgress() const
ExchangeOffer & operator=(ExchangeOffer &&Obj)=default
std::int32_t GetTotalAmount() const
ExchangeOffer(const void *Obj)
ExchangeOffer(ExchangeOffer &&Obj)=default
ExchangeOffer & operator=(const ExchangeOffer &Obj)=default
std::int32_t GetPrice() const
std::int32_t GetAmountTraded() const
std::int32_t GetItemID() const
std::int32_t GetSpent() const
static Class GetClass()