diff --git a/dist/Customer/Customer.d.ts b/dist/Customer/Customer.d.ts index 10b76d6..6ad0531 100644 --- a/dist/Customer/Customer.d.ts +++ b/dist/Customer/Customer.d.ts @@ -12,7 +12,7 @@ export default class Customer extends Resource { documents?: Document[]; totpCodes?: TotpCodes[]; password?: string | null; - office_membership?: Office; + office?: Office; } export declare enum ECustomerStatus { VALIDATED = "VALIDATED", diff --git a/dist/Customer/Customer.js b/dist/Customer/Customer.js index aece0a2..0d475a7 100644 --- a/dist/Customer/Customer.js +++ b/dist/Customer/Customer.js @@ -72,7 +72,7 @@ __decorate([ (0, class_transformer_1.Expose)(), (0, class_transformer_1.Type)(() => Notary_1.Office), __metadata("design:type", Notary_1.Office) -], Customer.prototype, "office_membership", void 0); +], Customer.prototype, "office", void 0); exports.default = Customer; var ECustomerStatus; (function (ECustomerStatus) { diff --git a/src/Customer/Customer.ts b/src/Customer/Customer.ts index 5d5b7bd..c0ccb08 100644 --- a/src/Customer/Customer.ts +++ b/src/Customer/Customer.ts @@ -41,7 +41,7 @@ export default class Customer extends Resource { @Expose() @Type(() => Office) - public office_membership?: Office; + public office?: Office; } export enum ECustomerStatus {