/** * @type MRTRulePatchRequest: PATCH request for updating an MRT rule. You may use the PATCH request to update the rule\'s expression and description as well as disable/enable the rule. * * @property enabled: Whether or not the rule is enabled. * * @property expression: The expression that determines the MRT rule\'s routing behavior. * - **Pattern:** /^.*$/ * * @property description: The description of the rule. Optional. * - **Pattern:** /^.*$/ * */ export type MRTRulePatchRequest = { enabled?: boolean; expression?: string; description?: string; } & { [key: string]: any; };