class Lucid::Shopify::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 13
def initialize(credentials, path, json)
  super(credentials, :put, path, json: json)
end