ezags-xsd 2.2.6.3 → 2.2.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/mappers/status_response_mapper.rb +8 -8
- data/lib/ezags-xsd/version.rb +1 -1
- metadata +1 -1
|
@@ -40,10 +40,10 @@ class StatusResponseMapper
|
|
|
40
40
|
attr_accessor :signature
|
|
41
41
|
end
|
|
42
42
|
|
|
43
|
-
class AppData::ChangeOrderInfo
|
|
43
|
+
class MessageData::AppData::ChangeOrderInfo
|
|
44
44
|
include XmlSchemaMapper
|
|
45
45
|
schema File.expand_path('../../vendor/ezags-protocols/eZAGS/public/OrderService.xsd', File.dirname(__FILE__))
|
|
46
|
-
annonymus_type 'StatusResponse::AppData::changeOrderInfo'
|
|
46
|
+
annonymus_type 'StatusResponse::MessageData::AppData::changeOrderInfo'
|
|
47
47
|
|
|
48
48
|
# Информация об услуги
|
|
49
49
|
# @return [ServiceInfoMapper]
|
|
@@ -71,10 +71,10 @@ class StatusResponseMapper
|
|
|
71
71
|
attr_accessor :auth_token
|
|
72
72
|
end
|
|
73
73
|
|
|
74
|
-
class ChangeOrderInfo::ServiceInfo
|
|
74
|
+
class MessageData::AppData::ChangeOrderInfo::ServiceInfo
|
|
75
75
|
include XmlSchemaMapper
|
|
76
76
|
schema File.expand_path('../../vendor/ezags-protocols/eZAGS/public/OrderService.xsd', File.dirname(__FILE__))
|
|
77
|
-
annonymus_type 'StatusResponse::changeOrderInfo::serviceInfo'
|
|
77
|
+
annonymus_type 'StatusResponse::MessageData::AppData::changeOrderInfo::serviceInfo'
|
|
78
78
|
|
|
79
79
|
# Код ведомства в ПГУ
|
|
80
80
|
# @return [String]
|
|
@@ -90,10 +90,10 @@ class StatusResponseMapper
|
|
|
90
90
|
attr_accessor :reestr_id
|
|
91
91
|
end
|
|
92
92
|
|
|
93
|
-
class ChangeOrderInfo::OrderId
|
|
93
|
+
class MessageData::AppData::ChangeOrderInfo::OrderId
|
|
94
94
|
include XmlSchemaMapper
|
|
95
95
|
schema File.expand_path('../../vendor/ezags-protocols/eZAGS/public/OrderService.xsd', File.dirname(__FILE__))
|
|
96
|
-
annonymus_type 'StatusResponse::changeOrderInfo::orderId'
|
|
96
|
+
annonymus_type 'StatusResponse::MessageData::AppData::changeOrderInfo::orderId'
|
|
97
97
|
|
|
98
98
|
# Id заявки на портале
|
|
99
99
|
# @return [String]
|
|
@@ -105,10 +105,10 @@ class StatusResponseMapper
|
|
|
105
105
|
attr_accessor :org_id
|
|
106
106
|
end
|
|
107
107
|
|
|
108
|
-
class ChangeOrderInfo::StatusCode
|
|
108
|
+
class MessageData::AppData::ChangeOrderInfo::StatusCode
|
|
109
109
|
include XmlSchemaMapper
|
|
110
110
|
schema File.expand_path('../../vendor/ezags-protocols/eZAGS/public/OrderService.xsd', File.dirname(__FILE__))
|
|
111
|
-
annonymus_type 'StatusResponse::changeOrderInfo::statusCode'
|
|
111
|
+
annonymus_type 'StatusResponse::MessageData::AppData::changeOrderInfo::statusCode'
|
|
112
112
|
|
|
113
113
|
# Код статуса в ведомстве
|
|
114
114
|
# @return [String]
|
data/lib/ezags-xsd/version.rb
CHANGED