From ef897695e9b5bfecbfcbbd4ad3aec62b4ecdca25 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 29 Jun 2018 16:55:04 -0400 Subject: [PATCH] fix typo on billing response --- src/models/response/billingResponse.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/response/billingResponse.ts b/src/models/response/billingResponse.ts index 12ca0a47f7..d3e451696a 100644 --- a/src/models/response/billingResponse.ts +++ b/src/models/response/billingResponse.ts @@ -72,13 +72,13 @@ export class BillingSubscriptionItemResponse { name: string; amount: number; quantity: number; - internal: string; + interval: string; constructor(response: any) { this.name = response.Name; this.amount = response.Amount; this.quantity = response.Quantity; - this.internal = response.Internal; + this.interval = response.Interval; } }