diff --git a/src/models/request/organizationUpdateRequest.ts b/src/models/request/organizationUpdateRequest.ts index ffb9149b34..306c20b305 100644 --- a/src/models/request/organizationUpdateRequest.ts +++ b/src/models/request/organizationUpdateRequest.ts @@ -1,5 +1,6 @@ export class OrganizationUpdateRequest { name: string; + identifier: string; businessName: string; billingEmail: string; } diff --git a/src/models/response/organizationResponse.ts b/src/models/response/organizationResponse.ts index 0859dca74c..c54aee077c 100644 --- a/src/models/response/organizationResponse.ts +++ b/src/models/response/organizationResponse.ts @@ -5,6 +5,7 @@ import { PlanType } from '../../enums/planType'; export class OrganizationResponse extends BaseResponse { id: string; + identifier: string; name: string; businessName: string; businessAddress1: string; @@ -28,6 +29,7 @@ export class OrganizationResponse extends BaseResponse { constructor(response: any) { super(response); this.id = this.getResponseProperty('Id'); + this.identifier = this.getResponseProperty('Identifier'); this.name = this.getResponseProperty('Name'); this.businessName = this.getResponseProperty('BusinessName'); this.businessAddress1 = this.getResponseProperty('BusinessAddress1');