diff --git a/dist/Customer/Office.d.ts b/dist/Customer/Office.d.ts index e58b817..9faabc3 100644 --- a/dist/Customer/Office.d.ts +++ b/dist/Customer/Office.d.ts @@ -8,4 +8,5 @@ export default class Office extends Resource { created_at: Date | null; updated_at: Date | null; rib_url?: string | null; + rib_name?: string | null; } diff --git a/dist/Customer/Office.js b/dist/Customer/Office.js index d26e170..2cb5034 100644 --- a/dist/Customer/Office.js +++ b/dist/Customer/Office.js @@ -22,6 +22,7 @@ class Office extends Resource_1.default { this.created_at = null; this.updated_at = null; this.rib_url = null; + this.rib_name = null; } } __decorate([ @@ -55,4 +56,8 @@ __decorate([ (0, class_transformer_1.Expose)(), __metadata("design:type", Object) ], Office.prototype, "rib_url", void 0); +__decorate([ + (0, class_transformer_1.Expose)(), + __metadata("design:type", Object) +], Office.prototype, "rib_name", void 0); exports.default = Office; diff --git a/src/Customer/Office.ts b/src/Customer/Office.ts index bcc7354..a4e1553 100644 --- a/src/Customer/Office.ts +++ b/src/Customer/Office.ts @@ -27,4 +27,7 @@ export default class Office extends Resource { @Expose() public rib_url?: string | null = null; + + @Expose() + public rib_name?: string | null = null; }