This is an automated email from the ASF dual-hosted git repository. ocket8888 pushed a commit to branch 3.x in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git
commit 85608e17982bc7f971bd2fa1c769e9c8120b2648 Author: ocket8888 <[email protected]> AuthorDate: Fri Jan 27 23:53:42 2023 -0700 Fix incorrect Job property name (cherry picked from commit 76a29516503d8489668093fdd2172bc9919e109b) --- src/invalidation.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/invalidation.ts b/src/invalidation.ts index d05f87d..23c3819 100644 --- a/src/invalidation.ts +++ b/src/invalidation.ts @@ -31,10 +31,8 @@ export interface ResponseInvalidationJob { * A regular expression that matches content to be "invalidated" or * "revalidated". */ - assetURL: string; - /** - * The name of the user that created the Job. - */ + assetUrl: string; + /** The name of the user that created the Job. */ createdBy: string; /** The XMLID of the Delivery Service within which the Job will operate. */ deliveryService: string;
