From e305184ffaf7b144d296a85a7c5d54a14f1bdc6b Mon Sep 17 00:00:00 2001 From: Vins Date: Wed, 13 Dec 2023 16:38:27 +0100 Subject: [PATCH] nullable cell_phone_number --- .DS_Store | Bin 6148 -> 6148 bytes src/Customer/Contact.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.DS_Store b/.DS_Store index 5d5bb24fa52f5f5e3a7b1017f448071143f80da6..99541fa6f55c4e44976ecd014cb458cffa05b7cf 100644 GIT binary patch delta 86 zcmZoMXffEJ%F29a!}Q62SY$+U^Icq$a`KZH7#KJh7#gN8kv-}Nl}N!V!C#PJ7@VA+ RTL9F-z*c@>^JdmSApqc08?^uc delta 86 zcmZoMXffEJ%F2BEkJ{uvEHWaw`7SO=Ir&Kp3=ABT^5rVj7>_zaB~q|T@E2ql1}Ep| R765fHu$4d9yqPsn2msSV8+!l% diff --git a/src/Customer/Contact.ts b/src/Customer/Contact.ts index 8716046..9175799 100644 --- a/src/Customer/Contact.ts +++ b/src/Customer/Contact.ts @@ -17,7 +17,7 @@ export default class Contact extends Resource { public email!: string; @Expose() - public cell_phone_number!: string; + public cell_phone_number?: string | null = null; @Expose() public phone_number?: string | null = null;