class Workarea::Paypal::Requests::DeleteWebhook

Attributes

body[RW]
headers[RW]
path[RW]
verb[RW]

Public Class Methods

new(id) click to toggle source
# File lib/workarea/paypal/requests/delete_webhook.rb, line 7
def initialize(id)
  @headers = {}
  @body = nil
  @verb = "DELETE"
  @path = "/v1/notifications/webhooks/#{id}"
  @headers["Content-Type"] = "application/json"
end