class MailchimpMarketing::EcommerceApi

def set_store_customer(store_id, customer_id, body, opts = {})

Add or update customer
def set_store_customer(store_id, customer_id, body, opts = {})
  fail ArgumentError, "Missing required param: 'store_id'" if store_id.nil?
  fail ArgumentError, "Missing required param: 'customer_id'" if customer_id.nil?
  fail ArgumentError, "Missing required param: 'body'" if body.nil?
  query_params = {}
  post_body = @api_client.object_to_http_body(body)
  local_var_path = '/ecommerce/stores/{store_id}/customers/{customer_id}'.sub('{' + 'store_id' + '}', store_id.to_s).sub('{' + 'customer_id' + '}', customer_id.to_s)
  data = @api_client.call_api(:PUT, local_var_path,
    :query_params => query_params,
    :body => post_body)
  return data
end