2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace MagDv \Sbis \Entities \Document \ListOfChanges \ Response ;
5
+ namespace MagDv \Sbis \Entities \Document \Common ;
6
6
7
7
use JMS \Serializer \Annotation as Serializer ;
8
8
@@ -13,11 +13,18 @@ class Attachment
13
13
* @Serializer\Type("string")
14
14
*/
15
15
public ?string $ version = null ;
16
+ /**
17
+ * @Serializer\SerializedName("ПодверсияФормата")
18
+ * @Serializer\Type("string")
19
+ */
20
+ public ?string $ subVersion = null ;
21
+
16
22
/**
17
23
* @Serializer\SerializedName("Дата")
18
24
* @Serializer\Type("string")
19
25
*/
20
26
public ?string $ date = null ;
27
+
21
28
/**
22
29
* @Serializer\SerializedName("Идентификатор")
23
30
* @Serializer\Type("string")
@@ -28,16 +35,19 @@ class Attachment
28
35
* @Serializer\Type("string")
29
36
*/
30
37
public ?string $ isModify = null ;
38
+
31
39
/**
32
40
* @Serializer\SerializedName("Название")
33
41
* @Serializer\Type("string")
34
42
*/
35
43
public ?string $ name = null ;
44
+
36
45
/**
37
46
* @Serializer\SerializedName("Направление")
38
47
* @Serializer\Type("string")
39
48
*/
40
49
public ?string $ direction = null ;
50
+
41
51
/**
42
52
* @Serializer\SerializedName("Номер")
43
53
* @Serializer\Type("string")
@@ -47,9 +57,17 @@ class Attachment
47
57
/**
48
58
* @var Sign[] $sign
49
59
* @Serializer\SerializedName("Подпись")
50
- * @Serializer\Type("array<MagDv\Sbis\Entities\Document\ListOfChanges\Response \Sign>")
60
+ * @Serializer\Type("array<MagDv\Sbis\Entities\Document\Common \Sign>")
51
61
*/
52
62
public ?array $ sign = null ;
63
+
64
+ /**
65
+ * @var Substitution[] $sign
66
+ * @Serializer\SerializedName("Подстановка")
67
+ * @Serializer\Type("array<MagDv\Sbis\Entities\Document\Common\Substitution>")
68
+ */
69
+ public ?array $ substitution = null ;
70
+
53
71
/**
54
72
* @Serializer\SerializedName("Подтип")
55
73
* @Serializer\Type("string")
@@ -78,6 +96,11 @@ class Attachment
78
96
* @Serializer\Type("string")
79
97
*/
80
98
public ?string $ sum = null ;
99
+ /**
100
+ * @Serializer\SerializedName("СуммаБезНдс")
101
+ * @Serializer\Type("string")
102
+ */
103
+ public ?string $ sumNoNds = null ;
81
104
82
105
/**
83
106
* @Serializer\SerializedName("Тип")
@@ -91,7 +114,6 @@ class Attachment
91
114
*/
92
115
public ?string $ isDelete = null ;
93
116
94
-
95
117
/**
96
118
* @Serializer\SerializedName("УдаленКонтрагентом")
97
119
* @Serializer\Type("string")
@@ -104,7 +126,6 @@ class Attachment
104
126
*/
105
127
public ?string $ isEncrypt = null ;
106
128
107
-
108
129
/**
109
130
* @Serializer\SerializedName("ТипШифрования")
110
131
* @Serializer\Type("string")
@@ -114,14 +135,13 @@ class Attachment
114
135
/**
115
136
* @var File|null
116
137
* @Serializer\SerializedName("Файл")
117
- * @Serializer\Type("MagDv\Sbis\Entities\Document\ListOfChanges\Response \File")
138
+ * @Serializer\Type("MagDv\Sbis\Entities\Document\Common \File")
118
139
*/
119
140
public ?File $ file = null ;
120
141
121
142
/**
122
- * @var \MagDv\Sbis\Entities\Document\ListOfChanges\Response\Redaction|null
123
143
* @Serializer\SerializedName("Редакция")
124
- * @Serializer\Type("MagDv\Sbis\Entities\Document\ListOfChanges\Response\Redaction ")
144
+ * @Serializer\Type("MagDv\Sbis\Entities\Document\Common\AttachmentRedaction ")
125
145
*/
126
- public ?Redaction $ redaction = null ;
146
+ public ?AttachmentRedaction $ attachmentRedaction = null ;
127
147
}
0 commit comments