mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
28 lines (27 loc) • 962 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioDistributorResponsibleEntity = void 0;
var general_1 = require("../../../general");
var PayioDistributorResponsibleEntity = /** @class */ (function () {
// #endregion Properties (7)
// #region Constructors (1)
function PayioDistributorResponsibleEntity(data) {
// #region Properties (7)
this.doc = '';
this.docType = general_1.EDocType.CPF;
this.documentFileUrl = '';
this.email = '';
this.internationalCode = '55';
this.name = '';
this.phoneNumber = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioDistributorResponsibleEntity;
}());
exports.PayioDistributorResponsibleEntity = PayioDistributorResponsibleEntity;