Sha256: 64f7da756eaa4307c9ff51399e8dc117b4008e43aafb48a94f29c008d7f387ac
Contents?: true
Size: 436 Bytes
Versions: 7
Compression:
Stored size: 436 Bytes
Contents
module Workarea module Paypal module Requests class GenerateToken attr_accessor :path, :body, :headers, :verb def initialize @headers = {} @body = nil @verb = "POST" @path = "/v1/identity/generate-token" @headers["Content-Type"] = "application/json" end def request_body(body) @body = body end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems