From c3d6fa97cfc4fb6b11b7dc845dc32973cc77dbbb Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Sun, 30 Jul 2017 13:15:00 +0200 Subject: [PATCH] Add missing fields in operation. --- src/operations/operation.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/operations/operation.ts b/src/operations/operation.ts index e8e2867..f122da5 100644 --- a/src/operations/operation.ts +++ b/src/operations/operation.ts @@ -6,5 +6,10 @@ export class Operation { label: string; value: number; category: string; + scheduled_operation_id: number; account_id: number; + balance: number; + confirmed: boolean; + pointed: boolean; + cancelled: boolean }