Class: ErpIntegration::Configuration
- Inherits:
-
Object
- Object
- ErpIntegration::Configuration
- Defined in:
- lib/erp_integration/configuration.rb
Overview
Use the ‘Configuration` class to configure the ERP Integration gem. Use an initializer in your project configure the ERP Integration gem.
Instance Attribute Summary collapse
- #bill_of_material_adapter ⇒ Object
- #bill_of_material_input_adapter ⇒ Object
- #bill_of_material_output_adapter ⇒ Object
- #channel_listing_adapter ⇒ Object
- #country_adapter ⇒ Object
- #customer_shipment_adapter ⇒ Object
- #customer_shipment_return_adapter ⇒ Object
-
#fulfil_api_key ⇒ String
The ‘fulfil_api_key` is used by the `FulfilClient` to authorize the requests to the Fulfil API endpoints.
-
#fulfil_merchant_id ⇒ String
The ‘fulfil_merchant_id` is used by the `FulfilClient` to connect to the right Fulfil API endpoints.
- #gift_card_adapter ⇒ Object
- #internal_shipment_adapter ⇒ Object
- #location_adapter ⇒ Object
-
#logger ⇒ Logger
Logger that will be used for HTTP operations on Client.
- #product_adapter ⇒ Object
- #product_category_adapter ⇒ Object
- #product_option_adapter ⇒ Object
- #product_template_adapter ⇒ Object
- #production_order_adapter ⇒ Object
- #purchase_order_adapter ⇒ Object
- #purchase_order_line_adapter ⇒ Object
- #purchase_request_adapter ⇒ Object
- #sales_line_option_adapter ⇒ Object
- #sales_order_adapter ⇒ Object
- #sales_order_line_adapter ⇒ Object
- #sales_return_reason_adapter ⇒ Object
- #stock_bin_transfer_adapter ⇒ Object
- #stock_move_adapter ⇒ Object
- #supplier_shipment_adapter ⇒ Object
- #task_adapter ⇒ Object
- #tracking_number_adapter ⇒ Object
Instance Method Summary collapse
- #box_type_adapter ⇒ Object
- #carrier_adapter ⇒ Object
- #carrier_service_adapter ⇒ Object
-
#initialize(**options) ⇒ Configuration
constructor
A new instance of Configuration.
- #webhook_adapter ⇒ Object
Constructor Details
#initialize(**options) ⇒ Configuration
Returns a new instance of Configuration.
164 165 166 167 168 |
# File 'lib/erp_integration/configuration.rb', line 164 def initialize(**) .each_pair do |key, value| public_send("#{key}=", value) if respond_to?("#{key}=") end end |
Instance Attribute Details
#bill_of_material_adapter ⇒ Object
178 179 180 |
# File 'lib/erp_integration/configuration.rb', line 178 def bill_of_material_adapter @bill_of_material_adapter || :fulfil end |
#bill_of_material_input_adapter ⇒ Object
182 183 184 |
# File 'lib/erp_integration/configuration.rb', line 182 def bill_of_material_input_adapter @bill_of_material_input_adapter || :fulfil end |
#bill_of_material_output_adapter ⇒ Object
186 187 188 |
# File 'lib/erp_integration/configuration.rb', line 186 def bill_of_material_output_adapter @bill_of_material_output_adapter || :fulfil end |
#channel_listing_adapter ⇒ Object
198 199 200 |
# File 'lib/erp_integration/configuration.rb', line 198 def channel_listing_adapter @channel_listing_adapter || :fulfil end |
#country_adapter ⇒ Object
194 195 196 |
# File 'lib/erp_integration/configuration.rb', line 194 def country_adapter @country_adapter || :fulfil end |
#customer_shipment_adapter ⇒ Object
202 203 204 |
# File 'lib/erp_integration/configuration.rb', line 202 def customer_shipment_adapter @customer_shipment_adapter || :fulfil end |
#customer_shipment_return_adapter ⇒ Object
206 207 208 |
# File 'lib/erp_integration/configuration.rb', line 206 def customer_shipment_return_adapter @customer_shipment_return_adapter || :fulfil end |
#fulfil_api_key ⇒ String
The ‘fulfil_api_key` is used by the `FulfilClient` to authorize the requests to the Fulfil API endpoints.
18 19 20 |
# File 'lib/erp_integration/configuration.rb', line 18 def fulfil_api_key @fulfil_api_key end |
#fulfil_merchant_id ⇒ String
The ‘fulfil_merchant_id` is used by the `FulfilClient` to connect to the right Fulfil API endpoints.
23 24 25 |
# File 'lib/erp_integration/configuration.rb', line 23 def fulfil_merchant_id @fulfil_merchant_id end |
#gift_card_adapter ⇒ Object
282 283 284 |
# File 'lib/erp_integration/configuration.rb', line 282 def gift_card_adapter @gift_card_adapter || :fulfil end |
#internal_shipment_adapter ⇒ Object
210 211 212 |
# File 'lib/erp_integration/configuration.rb', line 210 def internal_shipment_adapter @internal_shipment_adapter || :fulfil end |
#location_adapter ⇒ Object
214 215 216 |
# File 'lib/erp_integration/configuration.rb', line 214 def location_adapter @location_adapter || :fulfil end |
#logger ⇒ Logger
Logger that will be used for HTTP operations on Client
162 163 164 |
# File 'lib/erp_integration/configuration.rb', line 162 def logger @logger end |
#product_adapter ⇒ Object
218 219 220 |
# File 'lib/erp_integration/configuration.rb', line 218 def product_adapter @product_adapter || :fulfil end |
#product_category_adapter ⇒ Object
222 223 224 |
# File 'lib/erp_integration/configuration.rb', line 222 def product_category_adapter @product_category_adapter || :fulfil end |
#product_option_adapter ⇒ Object
290 291 292 |
# File 'lib/erp_integration/configuration.rb', line 290 def product_option_adapter @product_option_adapter || :fulfil end |
#product_template_adapter ⇒ Object
226 227 228 |
# File 'lib/erp_integration/configuration.rb', line 226 def product_template_adapter @product_template_adapter || :fulfil end |
#production_order_adapter ⇒ Object
230 231 232 |
# File 'lib/erp_integration/configuration.rb', line 230 def production_order_adapter @production_order_adapter || :fulfil end |
#purchase_order_adapter ⇒ Object
234 235 236 |
# File 'lib/erp_integration/configuration.rb', line 234 def purchase_order_adapter @purchase_order_adapter || :fulfil end |
#purchase_order_line_adapter ⇒ Object
238 239 240 |
# File 'lib/erp_integration/configuration.rb', line 238 def purchase_order_line_adapter @purchase_order_line_adapter || :fulfil end |
#purchase_request_adapter ⇒ Object
242 243 244 |
# File 'lib/erp_integration/configuration.rb', line 242 def purchase_request_adapter @purchase_request_adapter || :fulfil end |
#sales_line_option_adapter ⇒ Object
286 287 288 |
# File 'lib/erp_integration/configuration.rb', line 286 def sales_line_option_adapter @sales_line_option_adapter || :fulfil end |
#sales_order_adapter ⇒ Object
250 251 252 |
# File 'lib/erp_integration/configuration.rb', line 250 def sales_order_adapter @sales_order_adapter || :fulfil end |
#sales_order_line_adapter ⇒ Object
246 247 248 |
# File 'lib/erp_integration/configuration.rb', line 246 def sales_order_line_adapter @sales_order_line_adapter || :fulfil end |
#sales_return_reason_adapter ⇒ Object
254 255 256 |
# File 'lib/erp_integration/configuration.rb', line 254 def sales_return_reason_adapter @sales_return_reason_adapter || :fulfil end |
#stock_bin_transfer_adapter ⇒ Object
262 263 264 |
# File 'lib/erp_integration/configuration.rb', line 262 def stock_bin_transfer_adapter @stock_bin_transfer_adapter || :fulfil end |
#stock_move_adapter ⇒ Object
266 267 268 |
# File 'lib/erp_integration/configuration.rb', line 266 def stock_move_adapter @stock_move_adapter || :fulfil end |
#supplier_shipment_adapter ⇒ Object
258 259 260 |
# File 'lib/erp_integration/configuration.rb', line 258 def supplier_shipment_adapter @supplier_shipment_adapter || :fulfil end |
#task_adapter ⇒ Object
270 271 272 |
# File 'lib/erp_integration/configuration.rb', line 270 def task_adapter @task_adapter || :fulfil end |
#tracking_number_adapter ⇒ Object
274 275 276 |
# File 'lib/erp_integration/configuration.rb', line 274 def tracking_number_adapter @tracking_number_adapter || :fulfil end |
Instance Method Details
#box_type_adapter ⇒ Object
190 191 192 |
# File 'lib/erp_integration/configuration.rb', line 190 def box_type_adapter @box_type_adapter || :fulfil end |
#carrier_adapter ⇒ Object
170 171 172 |
# File 'lib/erp_integration/configuration.rb', line 170 def carrier_adapter @carrier_adapter || :fulfil end |
#carrier_service_adapter ⇒ Object
174 175 176 |
# File 'lib/erp_integration/configuration.rb', line 174 def carrier_service_adapter @carrier_service_adapter || :fulfil end |
#webhook_adapter ⇒ Object
278 279 280 |
# File 'lib/erp_integration/configuration.rb', line 278 def webhook_adapter @webhook_adapter || :fulfil end |