From 0a46513e38297c49aebbbfb71e73e20aaa752780 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 9 Jul 2018 11:49:16 -0400 Subject: [PATCH] add missing collectionid --- src/models/response/eventResponse.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/models/response/eventResponse.ts b/src/models/response/eventResponse.ts index 1a5ca70ed5..db44bc1a7a 100644 --- a/src/models/response/eventResponse.ts +++ b/src/models/response/eventResponse.ts @@ -6,6 +6,7 @@ export class EventResponse { userId: string; organizationId: string; cipherId: string; + collectionId: string; groupId: string; organizationUserId: string; actingUserId: string; @@ -18,6 +19,7 @@ export class EventResponse { this.userId = response.UserId; this.organizationId = response.OrganizationId; this.cipherId = response.CipherId; + this.collectionId = response.CollectionId; this.groupId = response.GroupId; this.organizationUserId = response.OrganizationUserId; this.actingUserId = response.ActingUserId;