/** * @type CustomRulesPatchOrderRequest: Update the order of all existing custom rules. * * @property ruleIds: An array of ruleIds representing the new order of custom rules. * */ export type CustomRulesPatchOrderRequest = { ruleIds: Array; } & { [key: string]: any; };