From 6b98bbce7c0d187ccf4f9b2bbb08c4da8e96b5a8 Mon Sep 17 00:00:00 2001 From: Krishna Acondy Date: Tue, 1 Sep 2020 11:12:56 +0100 Subject: [PATCH] chore(types): add code property to Job model --- src/types/Job.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/Job.ts b/src/types/Job.ts index ccd8314..cee59d6 100644 --- a/src/types/Job.ts +++ b/src/types/Job.ts @@ -6,6 +6,7 @@ export interface Job { name: string; uri: string; createdBy: string; + code?: string; links: Link[]; results: JobResult; error?: any;