The script configuration object containing all configuration settings. This object holds various configuration parameters that can be used to customize script behavior and access external configuration data.
The structure of this object depends on the specific configuration settings defined for the pricing script.
var config = Configuration.ScriptConfig;
var markupPercentage = config.markupPercentage || 20;
var baseShippingCost = config.baseShippingCost || 5.99;
Generated using TypeDoc
Provides access to script configuration settings and parameters. This interface allows pricing scripts to retrieve configuration data that controls their behavior and functionality.
Configuration settings can include script-specific parameters, environment variables, and custom configuration data that affects how the pricing script operates.