Sha256: f0ae9c83dd82a0277a120255aaff911b6bb85fcd7bc7be38b0c9d834371edacf
Contents?: true
Size: 366 Bytes
Versions: 7
Compression:
Stored size: 366 Bytes
Contents
module Workarea module Paypal module Requests class ListWebhooks attr_accessor :path, :body, :headers, :verb def initialize @headers = {} @body = nil @verb = "GET" @path = "/v1/notifications/webhooks" @headers["Content-Type"] = "application/json" end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems