class Lucid::Shopify::PostRequest
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/post_request.rb, line 13 def initialize(credentials, path, json) super(credentials, :post, path, json: json) end