Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
namespace App\Dto;
use Ramsey\Collection\Collection;
class RestaurantDetailElementDto implements DtoInterface
{
public string $id;
public string $name;
public string $code;
public string $coordinates;
public RestaurantTypeDto $type;
public ?string $check;
public ?string $check_info;
/** @var DtoCollection<KitchenTypeDto>|null */
public ?DtoCollection $kitchen;
/** @var DtoCollection<string>|null */
public ?DtoCollection $phone;
/** @var DtoCollection<string>|null */
public ?DtoCollection $email;
/** @var DtoCollection<string>|null */
public ?DtoCollection $address;
/** @var DtoCollection<TagDto>|null */
public ?DtoCollection $tags;
public ?string $site;
/** @var FileDto|null Превью фото */
public ?FileDto $image;
/** @var DtoCollection<FileDto>|null */
public ?DtoCollection $gallery;
}