UNPKG

cecon-interfaces

Version:
21 lines (20 loc) 640 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OrderPaymentPixEntity = void 0; var OrderPaymentPixEntity = /** @class */ (function () { function OrderPaymentPixEntity(data) { this.imageBase64 = ''; this.paymentLink = ''; this.pixKey = ''; this.urlQrImage = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return OrderPaymentPixEntity; }()); exports.OrderPaymentPixEntity = OrderPaymentPixEntity;