Class: Pokepay::Request::RequestUserStats

Inherits:
Request
  • Object
show all
Defined in:
lib/pokepay_partner_ruby_sdk/request/request_user_stats.rb

Instance Attribute Summary collapse

Attributes inherited from Request

#body_params, #method, #path

Instance Method Summary collapse

Constructor Details

#initialize(from, to) ⇒ RequestUserStats

Returns a new instance of RequestUserStats.



7
8
9
10
11
12
13
# File 'lib/pokepay_partner_ruby_sdk/request/request_user_stats.rb', line 7

def initialize(from, to)
  @path = "/user-stats"
  @method = "POST"
  @body_params = { "from" => from,
                   "to" => to }
  @response_class = Pokepay::Response::UserStatsOperation
end

Instance Attribute Details

#response_classObject (readonly)

Returns the value of attribute response_class.



14
15
16
# File 'lib/pokepay_partner_ruby_sdk/request/request_user_stats.rb', line 14

def response_class
  @response_class
end