Module: Falsify

Defined in:
lib/falsify.rb,
lib/falsify/error.rb,
lib/falsify/version.rb,
lib/falsify/models/address.rb,
lib/falsify/models/order/order.rb,
lib/falsify/models/order/tax_line.rb,
lib/falsify/models/order/price_set.rb,
lib/falsify/models/product/product.rb,
lib/falsify/models/customer/customer.rb,
lib/falsify/models/customer/metafield.rb,
lib/falsify/models/order/discount_code.rb,
lib/falsify/models/order/refund/refund.rb,
lib/falsify/models/order/shipping_line.rb,
lib/falsify/models/order/client_details.rb,
lib/falsify/models/order/order_line_item.rb,
lib/falsify/models/product/product_image.rb,
lib/falsify/models/fulfillment/fulfillment.rb,
lib/falsify/models/product/product_variant.rb,
lib/falsify/models/order/discount_allocation.rb,
lib/falsify/models/order/discount_application.rb,
lib/falsify/models/product/collection/collect.rb,
lib/falsify/models/fulfillment/fulfillment_event.rb,
lib/falsify/models/fulfillment/fulfillment_line_item.rb,
lib/falsify/models/product/collection/smart_collection.rb,
lib/falsify/models/product/collection/custom_collection.rb,
lib/falsify/models/fulfillment/supported_tracking_companies.rb

Overview

Shopify resources.

Defined Under Namespace

Classes: Address, ClientDetails, Collect, Customcollection, Customer, DiscountAllocation, DiscountApplication, DiscountCode, Error, Fulfillment, FulfillmentEvent, FulfillmentLineItem, Metafield, Order, OrderLineItem, PriceSet, Product, ProductImage, ProductVariant, Refund, ShippingLine, Smartcollection, TaxLine

Constant Summary collapse

VERSION =
"0.1.0".freeze

Class Method Summary collapse

Class Method Details

.supported_tracking_companiesArray<String>

Valid values for the tracking_company field of a Fulfillment.

Returns:

  • (Array<String>)


4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/falsify/models/fulfillment/supported_tracking_companies.rb', line 4

def self.supported_tracking_companies
  return [
    "4PX",
    "APC",
    "Amazon Logistics UK",
    "Amazon Logistics US",
    "Australia Post",
    "Bluedart",
    "Canada Post",
    "China Post",
    "Chukou1",
    "Correios",
    "DHL Express",
    "DHL eCommerce",
    "DHL eCommerce Asia",
    "DPD",
    "DPD Local",
    "DPD UK",
    "Delhivery",
    "Eagle",
    "FSC",
    "FedEx",
    "FedEx UK",
    "GLS",
    "Globegistics",
    "Japan Post (EN)",
    "Japan Post (JA)",
    "La Poste",
    "New Zealand Post",
    "Newgistics",
    "PostNL",
    "PostNord",
    "Purolator",
    "Royal Mail",
    "SF Express",
    "Sagawa (EN)",
    "Sagawa (JA)",
    "Singapore Post",
    "TNT",
    "UPS",
    "USPS",
    "Whistl",
    "Yamato (EN)",
    "Yamato (JA)",
    "YunExpress",
  ]
end