/** * @type OriginHeaderModification: An origin header modification rule. * * @property headerName: The name of the header forwarded to the origin. * - **Pattern:** /^.*$/ * * @property headerValue: The masked value of the header forwarded to the origin. * - **Pattern:** /^.*$/ * * @property lastUpdated: Date when the rule was last updated. * */ export type OriginHeaderModification = { headerName: string; headerValue: string; lastUpdated: string; } & { [key: string]: any; };