File tree 2 files changed +29
-0
lines changed
src/Entities/Document/Common
2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ declare (strict_types=1 );
4
+
5
+ namespace MagDv \Sbis \Entities \Document \Common ;
6
+
7
+ use JMS \Serializer \Annotation as Serializer ;
8
+
9
+ class ChangesAction
10
+ {
11
+ /**
12
+ * @Serializer\SerializedName("Идентификатор")
13
+ * @Serializer\Type("string")
14
+ */
15
+ public ?string $ id = null ;
16
+
17
+ /**
18
+ * @Serializer\SerializedName("Название")
19
+ * @Serializer\Type("string")
20
+ */
21
+ public ?string $ name = null ;
22
+ }
Original file line number Diff line number Diff line change @@ -45,4 +45,11 @@ class Event
45
45
* @Serializer\Type("string")
46
46
*/
47
47
public ?string $ name = null ;
48
+
49
+ /**
50
+ * @var ChangesAction|null
51
+ * @Serializer\SerializedName("Действие")
52
+ * @Serializer\Type("MagDv\Sbis\Entities\Document\Common\ChangesAction")
53
+ */
54
+ public ?ChangesAction $ action = null ;
48
55
}
You can’t perform that action at this time.
0 commit comments