1
0
mirror of synced 2024-11-25 06:16:06 +03:00
service-bundle/Models/Error.php

22 lines
232 B
PHP
Raw Normal View History

2021-02-05 14:47:54 +03:00
<?php
namespace RetailCrm\ServiceBundle\Models;
class Error
{
2022-07-20 14:54:24 +03:00
/**
* @var string
*/
public $code;
2021-02-05 14:47:54 +03:00
2022-07-20 14:54:24 +03:00
/**
* @var string
*/
public $message;
2021-02-05 14:47:54 +03:00
2022-07-20 14:54:24 +03:00
/**
* @var array
*/
public $details;
2021-02-05 14:47:54 +03:00
}