class LucidShopify::PutRequest
Public Class Methods
new(credentials, path, json)
click to toggle source
@private
@param credentials [Credentials] @param path [String] the endpoint relative to the base URL @param json [Hash] the JSON request body
Calls superclass method
# File lib/lucid_shopify/put_request.rb, line 14 def initialize(credentials, path, json) super(credentials, :put, path, json: json) end