class CslCli::Request::Delete
Attributes
code[R]
response[R]
Public Class Methods
new(url, body, headers)
click to toggle source
# File lib/csl_cli/request.rb, line 43 def initialize(url, body, headers) @response = HTTParty.delete(url, body: body, headers: headers) @code = @response.code end