class Cafmal::Request::Post
Attributes
response[R]
Public Class Methods
new(url, body, headers)
click to toggle source
# File lib/cafmal/request.rb, line 10 def initialize(url, body, headers) @response = HTTParty.post(url, body: body, headers: headers) end