/** * @type MRTRulesPostRequest: POST request for creating MRT rules. MRT rules are a way to route certain storefront requests to the managed runtime instance. * * @property mrtHostname: The customer\'s MRT instance hostname. * - **Pattern:** /^.*$/ * * @property expressions: An array containing the expressions for each MRT rule. * * @property descriptions: An array containing the descriptions for each MRT rule. The number of descriptions provided must match the number of expressions provided. Optional. * */ export type MRTRulesPostRequest = { mrtHostname: string; expressions: Array; descriptions?: Array; } & { [key: string]: any; };