v2.105
This commit is contained in:
parent
e305184ffa
commit
735cfc8290
2
dist/Customer/Contact.d.ts
vendored
2
dist/Customer/Contact.d.ts
vendored
@ -5,7 +5,7 @@ export default class Contact extends Resource {
|
||||
first_name: string;
|
||||
last_name: string;
|
||||
email: string;
|
||||
cell_phone_number: string;
|
||||
cell_phone_number?: string | null;
|
||||
phone_number?: string | null;
|
||||
civility: ECivility | string;
|
||||
address?: Address;
|
||||
|
3
dist/Customer/Contact.js
vendored
3
dist/Customer/Contact.js
vendored
@ -20,6 +20,7 @@ const class_transformer_1 = require("class-transformer");
|
||||
class Contact extends Resource_1.default {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
this.cell_phone_number = null;
|
||||
this.phone_number = null;
|
||||
this.birthdate = null;
|
||||
this.created_at = null;
|
||||
@ -44,7 +45,7 @@ __decorate([
|
||||
], Contact.prototype, "email", void 0);
|
||||
__decorate([
|
||||
(0, class_transformer_1.Expose)(),
|
||||
__metadata("design:type", String)
|
||||
__metadata("design:type", Object)
|
||||
], Contact.prototype, "cell_phone_number", void 0);
|
||||
__decorate([
|
||||
(0, class_transformer_1.Expose)(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user