Class: Pokepay::Request::UpdateWebhook
- Defined in:
- lib/pokepay_partner_ruby_sdk/request/update_webhook.rb
Instance Attribute Summary collapse
-
#response_class ⇒ Object
readonly
Returns the value of attribute response_class.
Attributes inherited from Request
Instance Method Summary collapse
-
#initialize(webhook_id, rest_args = {}) ⇒ UpdateWebhook
constructor
A new instance of UpdateWebhook.
Constructor Details
#initialize(webhook_id, rest_args = {}) ⇒ UpdateWebhook
Returns a new instance of UpdateWebhook.
7 8 9 10 11 12 |
# File 'lib/pokepay_partner_ruby_sdk/request/update_webhook.rb', line 7 def initialize(webhook_id, rest_args = {}) @path = "/webhooks" + "/" + webhook_id @method = "PATCH" @body_params = { }.merge(rest_args) @response_class = Pokepay::Response::OrganizationWorkerTaskWebhook end |
Instance Attribute Details
#response_class ⇒ Object (readonly)
Returns the value of attribute response_class.
13 14 15 |
# File 'lib/pokepay_partner_ruby_sdk/request/update_webhook.rb', line 13 def response_class @response_class end |