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.
- #party_address_adapter ⇒ Object
- #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.
169 170 171 172 173 |
# File 'lib/erp_integration/configuration.rb', line 169 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
183 184 185 |
# File 'lib/erp_integration/configuration.rb', line 183 def bill_of_material_adapter @bill_of_material_adapter || :fulfil end |
#bill_of_material_input_adapter ⇒ Object
187 188 189 |
# File 'lib/erp_integration/configuration.rb', line 187 def bill_of_material_input_adapter @bill_of_material_input_adapter || :fulfil end |
#bill_of_material_output_adapter ⇒ Object
191 192 193 |
# File 'lib/erp_integration/configuration.rb', line 191 def bill_of_material_output_adapter @bill_of_material_output_adapter || :fulfil end |
#channel_listing_adapter ⇒ Object
203 204 205 |
# File 'lib/erp_integration/configuration.rb', line 203 def channel_listing_adapter @channel_listing_adapter || :fulfil end |
#country_adapter ⇒ Object
199 200 201 |
# File 'lib/erp_integration/configuration.rb', line 199 def country_adapter @country_adapter || :fulfil end |
#customer_shipment_adapter ⇒ Object
207 208 209 |
# File 'lib/erp_integration/configuration.rb', line 207 def customer_shipment_adapter @customer_shipment_adapter || :fulfil end |
#customer_shipment_return_adapter ⇒ Object
211 212 213 |
# File 'lib/erp_integration/configuration.rb', line 211 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
287 288 289 |
# File 'lib/erp_integration/configuration.rb', line 287 def gift_card_adapter @gift_card_adapter || :fulfil end |
#internal_shipment_adapter ⇒ Object
215 216 217 |
# File 'lib/erp_integration/configuration.rb', line 215 def internal_shipment_adapter @internal_shipment_adapter || :fulfil end |
#location_adapter ⇒ Object
219 220 221 |
# File 'lib/erp_integration/configuration.rb', line 219 def location_adapter @location_adapter || :fulfil end |
#logger ⇒ Logger
Logger that will be used for HTTP operations on Client
167 168 169 |
# File 'lib/erp_integration/configuration.rb', line 167 def logger @logger end |
#party_address_adapter ⇒ Object
295 296 297 |
# File 'lib/erp_integration/configuration.rb', line 295 def party_address_adapter @party_address_adapter || :fulfil end |
#product_adapter ⇒ Object
223 224 225 |
# File 'lib/erp_integration/configuration.rb', line 223 def product_adapter @product_adapter || :fulfil end |
#product_category_adapter ⇒ Object
227 228 229 |
# File 'lib/erp_integration/configuration.rb', line 227 def product_category_adapter @product_category_adapter || :fulfil end |
#product_option_adapter ⇒ Object
299 300 301 |
# File 'lib/erp_integration/configuration.rb', line 299 def product_option_adapter @product_option_adapter || :fulfil end |
#product_template_adapter ⇒ Object
231 232 233 |
# File 'lib/erp_integration/configuration.rb', line 231 def product_template_adapter @product_template_adapter || :fulfil end |
#production_order_adapter ⇒ Object
235 236 237 |
# File 'lib/erp_integration/configuration.rb', line 235 def production_order_adapter @production_order_adapter || :fulfil end |
#purchase_order_adapter ⇒ Object
239 240 241 |
# File 'lib/erp_integration/configuration.rb', line 239 def purchase_order_adapter @purchase_order_adapter || :fulfil end |
#purchase_order_line_adapter ⇒ Object
243 244 245 |
# File 'lib/erp_integration/configuration.rb', line 243 def purchase_order_line_adapter @purchase_order_line_adapter || :fulfil end |
#purchase_request_adapter ⇒ Object
247 248 249 |
# File 'lib/erp_integration/configuration.rb', line 247 def purchase_request_adapter @purchase_request_adapter || :fulfil end |
#sales_line_option_adapter ⇒ Object
291 292 293 |
# File 'lib/erp_integration/configuration.rb', line 291 def sales_line_option_adapter @sales_line_option_adapter || :fulfil end |
#sales_order_adapter ⇒ Object
255 256 257 |
# File 'lib/erp_integration/configuration.rb', line 255 def sales_order_adapter @sales_order_adapter || :fulfil end |
#sales_order_line_adapter ⇒ Object
251 252 253 |
# File 'lib/erp_integration/configuration.rb', line 251 def sales_order_line_adapter @sales_order_line_adapter || :fulfil end |
#sales_return_reason_adapter ⇒ Object
259 260 261 |
# File 'lib/erp_integration/configuration.rb', line 259 def sales_return_reason_adapter @sales_return_reason_adapter || :fulfil end |
#stock_bin_transfer_adapter ⇒ Object
267 268 269 |
# File 'lib/erp_integration/configuration.rb', line 267 def stock_bin_transfer_adapter @stock_bin_transfer_adapter || :fulfil end |
#stock_move_adapter ⇒ Object
271 272 273 |
# File 'lib/erp_integration/configuration.rb', line 271 def stock_move_adapter @stock_move_adapter || :fulfil end |
#supplier_shipment_adapter ⇒ Object
263 264 265 |
# File 'lib/erp_integration/configuration.rb', line 263 def supplier_shipment_adapter @supplier_shipment_adapter || :fulfil end |
#task_adapter ⇒ Object
275 276 277 |
# File 'lib/erp_integration/configuration.rb', line 275 def task_adapter @task_adapter || :fulfil end |
#tracking_number_adapter ⇒ Object
279 280 281 |
# File 'lib/erp_integration/configuration.rb', line 279 def tracking_number_adapter @tracking_number_adapter || :fulfil end |
Instance Method Details
#box_type_adapter ⇒ Object
195 196 197 |
# File 'lib/erp_integration/configuration.rb', line 195 def box_type_adapter @box_type_adapter || :fulfil end |
#carrier_adapter ⇒ Object
175 176 177 |
# File 'lib/erp_integration/configuration.rb', line 175 def carrier_adapter @carrier_adapter || :fulfil end |
#carrier_service_adapter ⇒ Object
179 180 181 |
# File 'lib/erp_integration/configuration.rb', line 179 def carrier_service_adapter @carrier_service_adapter || :fulfil end |
#webhook_adapter ⇒ Object
283 284 285 |
# File 'lib/erp_integration/configuration.rb', line 283 def webhook_adapter @webhook_adapter || :fulfil end |