UNPKG

scheunemann-interfaces

Version:
41 lines (40 loc) 1.45 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LastVerificationRequestDataEntity = void 0; var enums_1 = require("../../general/enums"); var person_type_enum_1 = require("../../general/enums/person-type.enum"); var LastVerificationRequestDataEntity = /** @class */ (function () { // #endregion Properties (19) // #region Constructors (1) function LastVerificationRequestDataEntity(data) { // #region Properties (19) this.accountType = ''; this.address = ''; this.automaticTransfer = enums_1.EBooleanString.FALSE; this.bank = ''; this.bankAg = ''; this.bankCc = ''; this.businessType = ''; this.cep = ''; this.city = ''; this.cpf = ''; this.documentActivity = ''; this.documentCpf = ''; this.documentId = ''; this.name = ''; this.personType = person_type_enum_1.ELegalEntiy.LEGAL; this.physicalProducts = enums_1.EBooleanString.FALSE; this.priceRange = ''; this.state = ''; this.telephone = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return LastVerificationRequestDataEntity; }()); exports.LastVerificationRequestDataEntity = LastVerificationRequestDataEntity;