Files
oficial/app/src/Model/Proyecto/Broker.php

23 lines
445 B
PHP
Raw Normal View History

2025-02-18 16:02:10 -03:00
<?php
namespace Incoviba\Model\Proyecto;
use Incoviba\Common;
class Broker extends Common\Ideal\Model
{
public int $rut;
public string $digit;
public string $name;
public ?Broker\Data $data = null;
protected function jsonComplement(): array
{
return [
'rut' => $this->rut,
'digit' => $this->digit,
'name' => $this->name,
'data' => $this->data
];
}
}