mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 07:27:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			638 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			638 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://www.elastic.co/licensing/elastic-license
 | |
|  */
 | |
| 
 | |
| namespace App\DataMapper\Tax;
 | |
| 
 | |
| use App\DataMapper\Tax\ZipTax\Response;
 | |
| 
 | |
| /**
 | |
|  * InvoiceTaxData
 | |
|  *
 | |
|  * Definition for the invoice tax data structure
 | |
|  */
 | |
| class TaxData
 | |
| {
 | |
|     public int $updated_at;
 | |
| 
 | |
|     public function __construct(public Response $origin)
 | |
|     {
 | |
|         foreach($origin as $key => $value) {
 | |
|             $this->{$key} = $value;
 | |
|         }
 | |
|     }
 | |
| }
 |