soybean 2.0.1 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/bin/soybean +16 -6
- data/lib/soybean/generators/base_generator.rb +4 -0
- data/lib/soybean/generators/interface_generator.rb +1 -7
- data/lib/soybean/generators/model_generator.rb +8 -1
- data/lib/soybean/generators/model_spec_generator.rb +39 -0
- data/lib/soybean/generators/service_generator.rb +12 -7
- data/lib/soybean/generators/templates/model_spec.rb +14 -0
- data/lib/soybean/interface.rb +14 -0
- data/lib/soybean/interface_builder.rb +74 -0
- data/soybean.gemspec +7 -8
- data/spec/spec/services/models/get_registrars_service.rb +14 -0
- metadata +24 -25
- data/spec/services/interfaces/get_registrars_interface.rb +0 -16
- data/spec/services/mappings/base.rb +0 -2328
- data/spec/services/mappings/get_registrars.rb +0 -62
- data/spec/services/models/get_registrars_service.rb +0 -2
- data/spec/services/types/get_registrars.rb +0 -19
- data/spec/services/types/type.rb +0 -947
@@ -1,62 +0,0 @@
|
|
1
|
-
require 'soap/mapping'
|
2
|
-
|
3
|
-
module Mappings
|
4
|
-
EncodedRegistry ||= ::SOAP::Mapping::EncodedRegistry.new
|
5
|
-
LiteralRegistry ||= ::SOAP::Mapping::LiteralRegistry.new
|
6
|
-
|
7
|
-
module GetRegistrars
|
8
|
-
NsType = "http://ezags.rt.ru/rzags/GetRegistrarsService/type/"
|
9
|
-
NsType_0 = "http://ezags.rt.ru/type/"
|
10
|
-
|
11
|
-
EncodedRegistry.register(
|
12
|
-
:class => Types::GetRegistrars,
|
13
|
-
:schema_type => XSD::QName.new(NsType, "GetRegistrars"),
|
14
|
-
:schema_element => [
|
15
|
-
["regionCode", ["SOAP::SOAPInt", XSD::QName.new(nil, "regionCode")]],
|
16
|
-
["statementType", ["Types::WebStatementType", XSD::QName.new(nil, "statementType")], [0, 1]]
|
17
|
-
]
|
18
|
-
)
|
19
|
-
|
20
|
-
EncodedRegistry.register(
|
21
|
-
:class => Types::GetRegistrarsResponse,
|
22
|
-
:schema_type => XSD::QName.new(NsType, "GetRegistrarsResponse"),
|
23
|
-
:schema_element => [
|
24
|
-
["v_return", ["Types::ListOfRegistrars", XSD::QName.new(nil, "return")], [0, 1]]
|
25
|
-
]
|
26
|
-
)
|
27
|
-
|
28
|
-
EncodedRegistry.register(
|
29
|
-
:class => Types::ListOfRegistrars,
|
30
|
-
:schema_type => XSD::QName.new(NsType, "listOfRegistrars"),
|
31
|
-
:schema_element => [
|
32
|
-
["item", ["Types::Registrar[]", XSD::QName.new(nil, "item")], [0, nil]]
|
33
|
-
]
|
34
|
-
)
|
35
|
-
|
36
|
-
LiteralRegistry.register(
|
37
|
-
:class => Types::GetRegistrars,
|
38
|
-
:schema_type => XSD::QName.new(NsType, "GetRegistrars"),
|
39
|
-
:schema_element => [
|
40
|
-
["regionCode", ["SOAP::SOAPInt", XSD::QName.new(nil, "regionCode")]],
|
41
|
-
["statementType", ["Types::WebStatementType", XSD::QName.new(nil, "statementType")], [0, 1]]
|
42
|
-
]
|
43
|
-
)
|
44
|
-
|
45
|
-
LiteralRegistry.register(
|
46
|
-
:class => Types::GetRegistrarsResponse,
|
47
|
-
:schema_type => XSD::QName.new(NsType, "GetRegistrarsResponse"),
|
48
|
-
:schema_element => [
|
49
|
-
["v_return", ["Types::ListOfRegistrars", XSD::QName.new(nil, "return")], [0, 1]]
|
50
|
-
]
|
51
|
-
)
|
52
|
-
|
53
|
-
LiteralRegistry.register(
|
54
|
-
:class => Types::ListOfRegistrars,
|
55
|
-
:schema_type => XSD::QName.new(NsType, "listOfRegistrars"),
|
56
|
-
:schema_element => [
|
57
|
-
["item", ["Types::Registrar[]", XSD::QName.new(nil, "item")], [0, nil]]
|
58
|
-
]
|
59
|
-
)
|
60
|
-
|
61
|
-
end
|
62
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
require 'xsd/qname'
|
2
|
-
|
3
|
-
module Types
|
4
|
-
|
5
|
-
|
6
|
-
class GetRegistrars < Soybean::ComplexType
|
7
|
-
attr_accessor :region_code
|
8
|
-
attr_accessor :statement_type
|
9
|
-
end
|
10
|
-
|
11
|
-
class GetRegistrarsResponse < Soybean::ComplexType
|
12
|
-
attr_accessor :m_return
|
13
|
-
end
|
14
|
-
|
15
|
-
class ListOfRegistrars < ::Array
|
16
|
-
end
|
17
|
-
|
18
|
-
|
19
|
-
end
|
data/spec/services/types/type.rb
DELETED
@@ -1,947 +0,0 @@
|
|
1
|
-
require 'xsd/qname'
|
2
|
-
|
3
|
-
module Types
|
4
|
-
|
5
|
-
|
6
|
-
class ActRecordBaseClass < Soybean::ComplexType
|
7
|
-
attr_accessor :act_number
|
8
|
-
attr_accessor :act_date
|
9
|
-
attr_accessor :act_is_recovered
|
10
|
-
attr_accessor :registrar_name_identity
|
11
|
-
attr_accessor :record_identifier
|
12
|
-
attr_accessor :info_and_service_marks
|
13
|
-
attr_accessor :cancel_requisites
|
14
|
-
attr_accessor :cert_series
|
15
|
-
attr_accessor :cert_number
|
16
|
-
attr_accessor :correction_date
|
17
|
-
end
|
18
|
-
|
19
|
-
class AdoptionActRecord < ActRecordBaseClass
|
20
|
-
attr_accessor :act_number
|
21
|
-
attr_accessor :act_date
|
22
|
-
attr_accessor :act_is_recovered
|
23
|
-
attr_accessor :registrar_name_identity
|
24
|
-
attr_accessor :record_identifier
|
25
|
-
attr_accessor :info_and_service_marks
|
26
|
-
attr_accessor :cancel_requisites
|
27
|
-
attr_accessor :cert_series
|
28
|
-
attr_accessor :cert_number
|
29
|
-
attr_accessor :correction_date
|
30
|
-
attr_accessor :child_before
|
31
|
-
attr_accessor :birth_reqs_before
|
32
|
-
attr_accessor :child_after
|
33
|
-
attr_accessor :birth_reqs_after
|
34
|
-
attr_accessor :father_initials
|
35
|
-
attr_accessor :father_citizenship
|
36
|
-
attr_accessor :father_nationality
|
37
|
-
attr_accessor :mother_initials
|
38
|
-
attr_accessor :mother_citizenship
|
39
|
-
attr_accessor :mother_nationality
|
40
|
-
attr_accessor :adopter
|
41
|
-
attr_accessor :adopter2
|
42
|
-
attr_accessor :apopters_marriage
|
43
|
-
attr_accessor :court_decision
|
44
|
-
attr_accessor :adoptive_parents
|
45
|
-
attr_accessor :applicant
|
46
|
-
attr_accessor :applicant2
|
47
|
-
end
|
48
|
-
|
49
|
-
class BirthActRecord < ActRecordBaseClass
|
50
|
-
attr_accessor :act_number
|
51
|
-
attr_accessor :act_date
|
52
|
-
attr_accessor :act_is_recovered
|
53
|
-
attr_accessor :registrar_name_identity
|
54
|
-
attr_accessor :record_identifier
|
55
|
-
attr_accessor :info_and_service_marks
|
56
|
-
attr_accessor :cancel_requisites
|
57
|
-
attr_accessor :cert_series
|
58
|
-
attr_accessor :cert_number
|
59
|
-
attr_accessor :correction_date
|
60
|
-
attr_accessor :child
|
61
|
-
attr_accessor :number_of_births
|
62
|
-
attr_accessor :birth_type
|
63
|
-
attr_accessor :childen_count_in_family
|
64
|
-
attr_accessor :refused_child
|
65
|
-
attr_accessor :found_child
|
66
|
-
attr_accessor :father
|
67
|
-
attr_accessor :mother
|
68
|
-
attr_accessor :cert_of_birth
|
69
|
-
attr_accessor :statement_of_attented_at_birth
|
70
|
-
attr_accessor :statement_of_arrived_otherwise
|
71
|
-
attr_accessor :cert_of_perinatal_death
|
72
|
-
attr_accessor :marriage_reqs
|
73
|
-
attr_accessor :filiation_reqs
|
74
|
-
attr_accessor :single_mother_statement_date
|
75
|
-
attr_accessor :applicant_person
|
76
|
-
attr_accessor :applicant_organization
|
77
|
-
end
|
78
|
-
|
79
|
-
class DeathActRecord < ActRecordBaseClass
|
80
|
-
attr_accessor :act_number
|
81
|
-
attr_accessor :act_date
|
82
|
-
attr_accessor :act_is_recovered
|
83
|
-
attr_accessor :registrar_name_identity
|
84
|
-
attr_accessor :record_identifier
|
85
|
-
attr_accessor :info_and_service_marks
|
86
|
-
attr_accessor :cancel_requisites
|
87
|
-
attr_accessor :cert_series
|
88
|
-
attr_accessor :cert_number
|
89
|
-
attr_accessor :correction_date
|
90
|
-
attr_accessor :dead
|
91
|
-
attr_accessor :death_date
|
92
|
-
attr_accessor :death_date2
|
93
|
-
attr_accessor :death_place
|
94
|
-
attr_accessor :causes_of_death
|
95
|
-
attr_accessor :cert_of_death
|
96
|
-
attr_accessor :decision_of_death
|
97
|
-
attr_accessor :doc_of_repressed
|
98
|
-
attr_accessor :cert_of_perinatal_death
|
99
|
-
attr_accessor :military_id
|
100
|
-
attr_accessor :post_code
|
101
|
-
attr_accessor :registration_district
|
102
|
-
attr_accessor :military_district
|
103
|
-
attr_accessor :applicant_person
|
104
|
-
attr_accessor :applicant_organization
|
105
|
-
end
|
106
|
-
|
107
|
-
class DivorceActRecord < ActRecordBaseClass
|
108
|
-
attr_accessor :act_number
|
109
|
-
attr_accessor :act_date
|
110
|
-
attr_accessor :act_is_recovered
|
111
|
-
attr_accessor :registrar_name_identity
|
112
|
-
attr_accessor :record_identifier
|
113
|
-
attr_accessor :info_and_service_marks
|
114
|
-
attr_accessor :cancel_requisites
|
115
|
-
attr_accessor :cert_series
|
116
|
-
attr_accessor :cert_number
|
117
|
-
attr_accessor :correction_date
|
118
|
-
attr_accessor :husband
|
119
|
-
attr_accessor :wife
|
120
|
-
attr_accessor :new_last_name_of_husb
|
121
|
-
attr_accessor :new_last_name_of_wife
|
122
|
-
attr_accessor :divorce_date
|
123
|
-
attr_accessor :marriage_reqs
|
124
|
-
attr_accessor :children_count
|
125
|
-
attr_accessor :joint_statement
|
126
|
-
attr_accessor :decision_of_divorce
|
127
|
-
attr_accessor :decision_with_statement
|
128
|
-
attr_accessor :verdict_with_statement
|
129
|
-
attr_accessor :is_statement
|
130
|
-
attr_accessor :applicant
|
131
|
-
attr_accessor :statement_number
|
132
|
-
attr_accessor :statement_date
|
133
|
-
attr_accessor :cert_date
|
134
|
-
attr_accessor :tax
|
135
|
-
attr_accessor :applicant2
|
136
|
-
attr_accessor :statement_number2
|
137
|
-
attr_accessor :statement_date2
|
138
|
-
attr_accessor :cert_series2
|
139
|
-
attr_accessor :cert_number2
|
140
|
-
attr_accessor :cert_date2
|
141
|
-
attr_accessor :tax2
|
142
|
-
end
|
143
|
-
|
144
|
-
class FiliationActRecord < ActRecordBaseClass
|
145
|
-
attr_accessor :act_number
|
146
|
-
attr_accessor :act_date
|
147
|
-
attr_accessor :act_is_recovered
|
148
|
-
attr_accessor :registrar_name_identity
|
149
|
-
attr_accessor :record_identifier
|
150
|
-
attr_accessor :info_and_service_marks
|
151
|
-
attr_accessor :cancel_requisites
|
152
|
-
attr_accessor :cert_series
|
153
|
-
attr_accessor :cert_number
|
154
|
-
attr_accessor :correction_date
|
155
|
-
attr_accessor :child
|
156
|
-
attr_accessor :new_child_initials
|
157
|
-
attr_accessor :father
|
158
|
-
attr_accessor :mother
|
159
|
-
attr_accessor :joint_statement
|
160
|
-
attr_accessor :father_statement
|
161
|
-
attr_accessor :court_decision
|
162
|
-
attr_accessor :is_statement
|
163
|
-
attr_accessor :applicant
|
164
|
-
attr_accessor :applicant2
|
165
|
-
attr_accessor :tax
|
166
|
-
attr_accessor :marriage_reqs
|
167
|
-
attr_accessor :moth_last_name_in_marriage
|
168
|
-
end
|
169
|
-
|
170
|
-
class MarriageActRecord < ActRecordBaseClass
|
171
|
-
attr_accessor :act_number
|
172
|
-
attr_accessor :act_date
|
173
|
-
attr_accessor :act_is_recovered
|
174
|
-
attr_accessor :registrar_name_identity
|
175
|
-
attr_accessor :record_identifier
|
176
|
-
attr_accessor :info_and_service_marks
|
177
|
-
attr_accessor :cancel_requisites
|
178
|
-
attr_accessor :cert_series
|
179
|
-
attr_accessor :cert_number
|
180
|
-
attr_accessor :correction_date
|
181
|
-
attr_accessor :groom
|
182
|
-
attr_accessor :bride
|
183
|
-
attr_accessor :new_last_name_of_husb
|
184
|
-
attr_accessor :new_last_name_of_wife
|
185
|
-
attr_accessor :divorce_requisites_for_husb
|
186
|
-
attr_accessor :death_requisites_for_husb
|
187
|
-
attr_accessor :divorce_requisites_for_wife
|
188
|
-
attr_accessor :death_requisites_for_wife
|
189
|
-
attr_accessor :is_statement
|
190
|
-
attr_accessor :statement_number
|
191
|
-
attr_accessor :statement_date
|
192
|
-
attr_accessor :time_of_marriage
|
193
|
-
attr_accessor :cease_reqs
|
194
|
-
attr_accessor :divorce_reqs
|
195
|
-
attr_accessor :state_tax
|
196
|
-
end
|
197
|
-
|
198
|
-
class NameChangeActRecord < ActRecordBaseClass
|
199
|
-
attr_accessor :act_number
|
200
|
-
attr_accessor :act_date
|
201
|
-
attr_accessor :act_is_recovered
|
202
|
-
attr_accessor :registrar_name_identity
|
203
|
-
attr_accessor :record_identifier
|
204
|
-
attr_accessor :info_and_service_marks
|
205
|
-
attr_accessor :cancel_requisites
|
206
|
-
attr_accessor :cert_series
|
207
|
-
attr_accessor :cert_number
|
208
|
-
attr_accessor :correction_date
|
209
|
-
attr_accessor :person
|
210
|
-
attr_accessor :changed_initials
|
211
|
-
attr_accessor :phone
|
212
|
-
attr_accessor :recr_office_name
|
213
|
-
attr_accessor :reason
|
214
|
-
attr_accessor :birth_act_requisites
|
215
|
-
attr_accessor :child_initials
|
216
|
-
attr_accessor :father_initials
|
217
|
-
attr_accessor :mother_initials
|
218
|
-
attr_accessor :marital_status
|
219
|
-
attr_accessor :marital_status_reqs
|
220
|
-
attr_accessor :children
|
221
|
-
attr_accessor :corrected_act_list
|
222
|
-
attr_accessor :tax
|
223
|
-
attr_accessor :is_statement
|
224
|
-
attr_accessor :statement_number
|
225
|
-
attr_accessor :statement_date
|
226
|
-
attr_accessor :case_number
|
227
|
-
attr_accessor :case_end_date
|
228
|
-
end
|
229
|
-
|
230
|
-
class DateRecord < Soybean::ComplexType
|
231
|
-
attr_accessor :day
|
232
|
-
attr_accessor :month
|
233
|
-
attr_accessor :year
|
234
|
-
end
|
235
|
-
|
236
|
-
class RegistrarIdentity < Soybean::ComplexType
|
237
|
-
attr_accessor :region_code
|
238
|
-
attr_accessor :registrar_code
|
239
|
-
attr_accessor :registrar_id
|
240
|
-
end
|
241
|
-
|
242
|
-
class RegistrarNameIdentity < RegistrarIdentity
|
243
|
-
attr_accessor :region_code
|
244
|
-
attr_accessor :registrar_code
|
245
|
-
attr_accessor :registrar_id
|
246
|
-
attr_accessor :registrar_name_id
|
247
|
-
end
|
248
|
-
|
249
|
-
class ActRecordCancelRequisites < Soybean::ComplexType
|
250
|
-
attr_accessor :court_name
|
251
|
-
attr_accessor :court_date
|
252
|
-
attr_accessor :cancel_date
|
253
|
-
end
|
254
|
-
|
255
|
-
class ActRecordRequisites < Soybean::ComplexType
|
256
|
-
attr_accessor :number
|
257
|
-
attr_accessor :date
|
258
|
-
attr_accessor :name_of_registrar
|
259
|
-
attr_accessor :verification_status
|
260
|
-
end
|
261
|
-
|
262
|
-
class ActRecordOfAdoptionRequisites < ActRecordRequisites
|
263
|
-
attr_accessor :number
|
264
|
-
attr_accessor :date
|
265
|
-
attr_accessor :name_of_registrar
|
266
|
-
attr_accessor :verification_status
|
267
|
-
end
|
268
|
-
|
269
|
-
class ActRecordOfBirthRequisites < ActRecordRequisites
|
270
|
-
attr_accessor :number
|
271
|
-
attr_accessor :date
|
272
|
-
attr_accessor :name_of_registrar
|
273
|
-
attr_accessor :verification_status
|
274
|
-
end
|
275
|
-
|
276
|
-
class ActRecordOfDeathRequisites < ActRecordRequisites
|
277
|
-
attr_accessor :number
|
278
|
-
attr_accessor :date
|
279
|
-
attr_accessor :name_of_registrar
|
280
|
-
attr_accessor :verification_status
|
281
|
-
end
|
282
|
-
|
283
|
-
class ActRecordOfDivorceRequisites < ActRecordRequisites
|
284
|
-
attr_accessor :number
|
285
|
-
attr_accessor :date
|
286
|
-
attr_accessor :name_of_registrar
|
287
|
-
attr_accessor :verification_status
|
288
|
-
end
|
289
|
-
|
290
|
-
class ActRecordOfFiliationRequisites < ActRecordRequisites
|
291
|
-
attr_accessor :number
|
292
|
-
attr_accessor :date
|
293
|
-
attr_accessor :name_of_registrar
|
294
|
-
attr_accessor :verification_status
|
295
|
-
end
|
296
|
-
|
297
|
-
class ActRecordOfMarriageRequisites < ActRecordRequisites
|
298
|
-
attr_accessor :number
|
299
|
-
attr_accessor :date
|
300
|
-
attr_accessor :name_of_registrar
|
301
|
-
attr_accessor :verification_status
|
302
|
-
end
|
303
|
-
|
304
|
-
class ActRecordOfNameChangeRequisites < ActRecordRequisites
|
305
|
-
attr_accessor :number
|
306
|
-
attr_accessor :date
|
307
|
-
attr_accessor :name_of_registrar
|
308
|
-
attr_accessor :verification_status
|
309
|
-
end
|
310
|
-
|
311
|
-
class ActRecToCorrectDueNameChange < ActRecordRequisites
|
312
|
-
attr_accessor :number
|
313
|
-
attr_accessor :date
|
314
|
-
attr_accessor :name_of_registrar
|
315
|
-
attr_accessor :verification_status
|
316
|
-
attr_accessor :type
|
317
|
-
attr_accessor :subj1_initials
|
318
|
-
attr_accessor :subj2_initials
|
319
|
-
attr_accessor :corrections
|
320
|
-
end
|
321
|
-
|
322
|
-
class PersonInitials < Soybean::ComplexType
|
323
|
-
attr_accessor :last_name
|
324
|
-
attr_accessor :first_name
|
325
|
-
attr_accessor :middle_name
|
326
|
-
end
|
327
|
-
|
328
|
-
class Child < PersonInitials
|
329
|
-
attr_accessor :last_name
|
330
|
-
attr_accessor :first_name
|
331
|
-
attr_accessor :middle_name
|
332
|
-
attr_accessor :gender
|
333
|
-
attr_accessor :birth_date
|
334
|
-
attr_accessor :birth_place
|
335
|
-
end
|
336
|
-
|
337
|
-
class Person < Child
|
338
|
-
attr_accessor :last_name
|
339
|
-
attr_accessor :first_name
|
340
|
-
attr_accessor :middle_name
|
341
|
-
attr_accessor :gender
|
342
|
-
attr_accessor :birth_date
|
343
|
-
attr_accessor :birth_place
|
344
|
-
attr_accessor :citizenship
|
345
|
-
attr_accessor :nationality
|
346
|
-
attr_accessor :snils
|
347
|
-
attr_accessor :residence_place
|
348
|
-
attr_accessor :identity_document
|
349
|
-
end
|
350
|
-
|
351
|
-
class ChildInNameChangeOrCorrection < Child
|
352
|
-
attr_accessor :last_name
|
353
|
-
attr_accessor :first_name
|
354
|
-
attr_accessor :middle_name
|
355
|
-
attr_accessor :gender
|
356
|
-
attr_accessor :birth_date
|
357
|
-
attr_accessor :birth_place
|
358
|
-
attr_accessor :birth_reqs
|
359
|
-
end
|
360
|
-
|
361
|
-
class ApplicantPerson < PersonInitials
|
362
|
-
attr_accessor :last_name
|
363
|
-
attr_accessor :first_name
|
364
|
-
attr_accessor :middle_name
|
365
|
-
attr_accessor :residence_place
|
366
|
-
attr_accessor :identity_document
|
367
|
-
end
|
368
|
-
|
369
|
-
class RegistrarEmployee < PersonInitials
|
370
|
-
attr_accessor :last_name
|
371
|
-
attr_accessor :first_name
|
372
|
-
attr_accessor :middle_name
|
373
|
-
attr_accessor :job_title
|
374
|
-
attr_accessor :phone
|
375
|
-
end
|
376
|
-
|
377
|
-
class ListOfCorrectionsDueNameChange < ::Array
|
378
|
-
end
|
379
|
-
|
380
|
-
class CorrectionDueNameChange < Soybean::ComplexType
|
381
|
-
attr_accessor :subject
|
382
|
-
attr_accessor :field
|
383
|
-
attr_accessor :correct_field_after_act_registration
|
384
|
-
attr_accessor :previous_value
|
385
|
-
attr_accessor :new_value
|
386
|
-
end
|
387
|
-
|
388
|
-
class ShortAddress < Soybean::ComplexType
|
389
|
-
attr_accessor :country
|
390
|
-
attr_accessor :state_entity
|
391
|
-
attr_accessor :district
|
392
|
-
attr_accessor :city
|
393
|
-
attr_accessor :settl_type
|
394
|
-
attr_accessor :settl_name
|
395
|
-
end
|
396
|
-
|
397
|
-
class FullAddress < ShortAddress
|
398
|
-
attr_accessor :country
|
399
|
-
attr_accessor :state_entity
|
400
|
-
attr_accessor :district
|
401
|
-
attr_accessor :city
|
402
|
-
attr_accessor :settl_type
|
403
|
-
attr_accessor :settl_name
|
404
|
-
attr_accessor :street_type
|
405
|
-
attr_accessor :street_name
|
406
|
-
attr_accessor :house
|
407
|
-
attr_accessor :building
|
408
|
-
attr_accessor :appartment
|
409
|
-
end
|
410
|
-
|
411
|
-
class Citizenship < Soybean::ComplexType
|
412
|
-
attr_accessor :type
|
413
|
-
attr_accessor :country_in_genitive
|
414
|
-
end
|
415
|
-
|
416
|
-
class IdentityDocument < Soybean::ComplexType
|
417
|
-
attr_accessor :document_name
|
418
|
-
attr_accessor :series
|
419
|
-
attr_accessor :number
|
420
|
-
attr_accessor :organization_name
|
421
|
-
attr_accessor :document_date
|
422
|
-
attr_accessor :division_code
|
423
|
-
attr_accessor :verification_status
|
424
|
-
end
|
425
|
-
|
426
|
-
class CourtDecisionRequisites < Soybean::ComplexType
|
427
|
-
attr_accessor :court_name
|
428
|
-
attr_accessor :decision_date
|
429
|
-
attr_accessor :verification_status
|
430
|
-
end
|
431
|
-
|
432
|
-
class CourtDecisionInFatherStatementOfFiliation < CourtDecisionRequisites
|
433
|
-
attr_accessor :court_name
|
434
|
-
attr_accessor :decision_date
|
435
|
-
attr_accessor :verification_status
|
436
|
-
attr_accessor :type
|
437
|
-
end
|
438
|
-
|
439
|
-
class CourtDecisionOfDeath < CourtDecisionRequisites
|
440
|
-
attr_accessor :court_name
|
441
|
-
attr_accessor :decision_date
|
442
|
-
attr_accessor :verification_status
|
443
|
-
attr_accessor :type
|
444
|
-
end
|
445
|
-
|
446
|
-
class CourtDecisionOfDivorce < CourtDecisionRequisites
|
447
|
-
attr_accessor :court_name
|
448
|
-
attr_accessor :decision_date
|
449
|
-
attr_accessor :verification_status
|
450
|
-
end
|
451
|
-
|
452
|
-
class CourtDecisionOfDivorceWithStatement < CourtDecisionOfDivorce
|
453
|
-
attr_accessor :court_name
|
454
|
-
attr_accessor :decision_date
|
455
|
-
attr_accessor :verification_status
|
456
|
-
attr_accessor :against_whom
|
457
|
-
attr_accessor :type
|
458
|
-
attr_accessor :statement_date
|
459
|
-
attr_accessor :statement_number
|
460
|
-
end
|
461
|
-
|
462
|
-
class CourtVerdictOfDivorceWithStatement < CourtDecisionOfDivorce
|
463
|
-
attr_accessor :court_name
|
464
|
-
attr_accessor :decision_date
|
465
|
-
attr_accessor :verification_status
|
466
|
-
attr_accessor :against_whom
|
467
|
-
attr_accessor :imprisonment
|
468
|
-
attr_accessor :statement_date
|
469
|
-
attr_accessor :statement_number
|
470
|
-
end
|
471
|
-
|
472
|
-
class CourtDecisionOfFiliation < CourtDecisionRequisites
|
473
|
-
attr_accessor :court_name
|
474
|
-
attr_accessor :decision_date
|
475
|
-
attr_accessor :verification_status
|
476
|
-
attr_accessor :type
|
477
|
-
end
|
478
|
-
|
479
|
-
class CourtDecisionOfMarriageCease < CourtDecisionRequisites
|
480
|
-
attr_accessor :court_name
|
481
|
-
attr_accessor :decision_date
|
482
|
-
attr_accessor :verification_status
|
483
|
-
attr_accessor :marriage_cease_date
|
484
|
-
end
|
485
|
-
|
486
|
-
class ApostilleDoc < Soybean::ComplexType
|
487
|
-
attr_accessor :act_type
|
488
|
-
attr_accessor :doc_type
|
489
|
-
attr_accessor :act_number
|
490
|
-
attr_accessor :act_date
|
491
|
-
attr_accessor :subj1_initials
|
492
|
-
attr_accessor :subj2_initials
|
493
|
-
attr_accessor :doc_series
|
494
|
-
attr_accessor :doc_number
|
495
|
-
attr_accessor :doc_registrar
|
496
|
-
attr_accessor :tax
|
497
|
-
attr_accessor :perform_type
|
498
|
-
attr_accessor :apostille_date
|
499
|
-
attr_accessor :apostille_number
|
500
|
-
attr_accessor :refuse_reason
|
501
|
-
attr_accessor :issue_date
|
502
|
-
end
|
503
|
-
|
504
|
-
class StateTax < Soybean::ComplexType
|
505
|
-
attr_accessor :registrar_identity
|
506
|
-
attr_accessor :type
|
507
|
-
attr_accessor :amount
|
508
|
-
attr_accessor :payer
|
509
|
-
attr_accessor :payment_date
|
510
|
-
attr_accessor :statement_date
|
511
|
-
attr_accessor :service_date
|
512
|
-
end
|
513
|
-
|
514
|
-
class ApplicantOrganization < Soybean::ComplexType
|
515
|
-
attr_accessor :organization_name
|
516
|
-
attr_accessor :legal_address
|
517
|
-
end
|
518
|
-
|
519
|
-
class MedicalCertificateOfBirth < Soybean::ComplexType
|
520
|
-
attr_accessor :series
|
521
|
-
attr_accessor :number
|
522
|
-
attr_accessor :organization_name
|
523
|
-
attr_accessor :document_date
|
524
|
-
attr_accessor :verification_status
|
525
|
-
end
|
526
|
-
|
527
|
-
class MedicalCertificateOfPerinatalDeath < MedicalCertificateOfBirth
|
528
|
-
attr_accessor :series
|
529
|
-
attr_accessor :number
|
530
|
-
attr_accessor :organization_name
|
531
|
-
attr_accessor :document_date
|
532
|
-
attr_accessor :verification_status
|
533
|
-
attr_accessor :causes_of_death
|
534
|
-
end
|
535
|
-
|
536
|
-
class MedicalCertificateOfDeath < MedicalCertificateOfBirth
|
537
|
-
attr_accessor :series
|
538
|
-
attr_accessor :number
|
539
|
-
attr_accessor :organization_name
|
540
|
-
attr_accessor :document_date
|
541
|
-
attr_accessor :verification_status
|
542
|
-
attr_accessor :type
|
543
|
-
end
|
544
|
-
|
545
|
-
class StatementOfPersonAttentedAtBirth < Soybean::ComplexType
|
546
|
-
attr_accessor :statement_date
|
547
|
-
attr_accessor :initials
|
548
|
-
end
|
549
|
-
|
550
|
-
class StatementOfPersonArrivedOtherwise < StatementOfPersonAttentedAtBirth
|
551
|
-
attr_accessor :statement_date
|
552
|
-
attr_accessor :initials
|
553
|
-
attr_accessor :proceed_method
|
554
|
-
attr_accessor :organization_name
|
555
|
-
end
|
556
|
-
|
557
|
-
class ListOfCausesOfDeath < ::Array
|
558
|
-
end
|
559
|
-
|
560
|
-
class CauseOfDeath < Soybean::ComplexType
|
561
|
-
attr_accessor :code_in_icd10
|
562
|
-
attr_accessor :value
|
563
|
-
end
|
564
|
-
|
565
|
-
class CertificateIssueRecord < Soybean::ComplexType
|
566
|
-
attr_accessor :act_type
|
567
|
-
attr_accessor :registrar_identity
|
568
|
-
attr_accessor :act_registrar_name_identity
|
569
|
-
attr_accessor :act_record_id
|
570
|
-
attr_accessor :cert_series
|
571
|
-
attr_accessor :cert_number
|
572
|
-
attr_accessor :cert_date
|
573
|
-
attr_accessor :issue_type
|
574
|
-
attr_accessor :spoil_reason
|
575
|
-
attr_accessor :tax
|
576
|
-
end
|
577
|
-
|
578
|
-
class DocOfDeathUnjustlyRepressed < Soybean::ComplexType
|
579
|
-
attr_accessor :organization_name
|
580
|
-
attr_accessor :document_date
|
581
|
-
end
|
582
|
-
|
583
|
-
class PersonStatementBaseClass < Soybean::ComplexType
|
584
|
-
attr_accessor :statement_date
|
585
|
-
attr_accessor :statement_number
|
586
|
-
end
|
587
|
-
|
588
|
-
class JointStatementOfDivorce < PersonStatementBaseClass
|
589
|
-
attr_accessor :statement_date
|
590
|
-
attr_accessor :statement_number
|
591
|
-
end
|
592
|
-
|
593
|
-
class FatherStatementOfFiliation < PersonStatementBaseClass
|
594
|
-
attr_accessor :statement_date
|
595
|
-
attr_accessor :statement_number
|
596
|
-
attr_accessor :death_reqs
|
597
|
-
attr_accessor :court_decision
|
598
|
-
attr_accessor :ref_reqs
|
599
|
-
end
|
600
|
-
|
601
|
-
class JointStatementOfFiliation < PersonStatementBaseClass
|
602
|
-
attr_accessor :statement_date
|
603
|
-
attr_accessor :statement_number
|
604
|
-
end
|
605
|
-
|
606
|
-
class RefInFatherStatementOfFiliation < Soybean::ComplexType
|
607
|
-
attr_accessor :organization_name
|
608
|
-
attr_accessor :ref_date
|
609
|
-
end
|
610
|
-
|
611
|
-
class ListOfActRecsToCorrectDueNameChange < ::Array
|
612
|
-
end
|
613
|
-
|
614
|
-
class ListOfApostilleDocs < ::Array
|
615
|
-
end
|
616
|
-
|
617
|
-
class ListOfChildrenInNameChangeOrCorrection < ::Array
|
618
|
-
end
|
619
|
-
|
620
|
-
class ListOfRegistrarEmployees < ::Array
|
621
|
-
end
|
622
|
-
|
623
|
-
class ListOfWebStatementTypes < ::Array
|
624
|
-
end
|
625
|
-
|
626
|
-
class TimeOfMarriage < Soybean::ComplexType
|
627
|
-
attr_accessor :marriage_date
|
628
|
-
attr_accessor :time_hour
|
629
|
-
attr_accessor :time_minute
|
630
|
-
attr_accessor :solemnly
|
631
|
-
attr_accessor :hall_name
|
632
|
-
end
|
633
|
-
|
634
|
-
class ReferenceIssueRecord < Soybean::ComplexType
|
635
|
-
attr_accessor :act_type
|
636
|
-
attr_accessor :registrar_identity
|
637
|
-
attr_accessor :act_registrar_name_identity
|
638
|
-
attr_accessor :act_record_identifier
|
639
|
-
attr_accessor :form_type
|
640
|
-
attr_accessor :ref_number
|
641
|
-
attr_accessor :ref_issue_date
|
642
|
-
attr_accessor :tax
|
643
|
-
end
|
644
|
-
|
645
|
-
class Registrar < Soybean::ComplexType
|
646
|
-
attr_accessor :full_name
|
647
|
-
attr_accessor :short_name
|
648
|
-
attr_accessor :legal_address
|
649
|
-
attr_accessor :employees
|
650
|
-
attr_accessor :head
|
651
|
-
attr_accessor :identity
|
652
|
-
attr_accessor :type
|
653
|
-
attr_accessor :is_previous_name
|
654
|
-
attr_accessor :web_statement_types
|
655
|
-
end
|
656
|
-
|
657
|
-
class ReportForm26 < Soybean::ComplexType
|
658
|
-
attr_accessor :registrar_identity
|
659
|
-
attr_accessor :report_month
|
660
|
-
attr_accessor :report_year
|
661
|
-
attr_accessor :birth_act_count
|
662
|
-
attr_accessor :death_act_count
|
663
|
-
attr_accessor :marriage_act_count
|
664
|
-
attr_accessor :divorce_act_count
|
665
|
-
attr_accessor :divorce_act_count_by_court
|
666
|
-
attr_accessor :filiation_act_count
|
667
|
-
attr_accessor :adoption_act_count
|
668
|
-
attr_accessor :name_change_act_count
|
669
|
-
attr_accessor :statement_of_corrections_count_at_begining
|
670
|
-
attr_accessor :accepted_statement_of_corrections_count
|
671
|
-
attr_accessor :considered_statement_of_corrections_count
|
672
|
-
attr_accessor :performed_statement_of_corrections_under_art69_count
|
673
|
-
attr_accessor :performed_statement_of_corrections_under_art70_count
|
674
|
-
attr_accessor :refused_statement_of_corrections_count
|
675
|
-
attr_accessor :statement_of_corrections_count_at_end
|
676
|
-
attr_accessor :performed_notice_of_filiation_adoption_name_change_or_divorce_count
|
677
|
-
attr_accessor :performed_conclusion_of_correction_count
|
678
|
-
attr_accessor :reissued_certificate_count
|
679
|
-
attr_accessor :issued_reference_and_notice_count
|
680
|
-
attr_accessor :accepted_statement_of_requesting_documents_count
|
681
|
-
attr_accessor :apostilled_document_count
|
682
|
-
attr_accessor :supplemented_divorce_act_count
|
683
|
-
attr_accessor :cancelled_act_count
|
684
|
-
attr_accessor :issued_refuse_notice_count
|
685
|
-
attr_accessor :service_marks_count
|
686
|
-
attr_accessor :state_tax_total_in_thousands
|
687
|
-
attr_accessor :state_tax_for_marriage_in_thousands
|
688
|
-
attr_accessor :state_tax_for_divorce_in_thousands
|
689
|
-
attr_accessor :state_tax_for_filiation_in_thousands
|
690
|
-
attr_accessor :state_tax_for_name_change_in_thousands
|
691
|
-
attr_accessor :state_tax_for_cert_reissue_in_thousands
|
692
|
-
attr_accessor :state_tax_for_reference_issue_in_thousands
|
693
|
-
attr_accessor :state_tax_for_requesting_documents_in_thousands
|
694
|
-
attr_accessor :state_tax_for_apostille_in_thousands
|
695
|
-
attr_accessor :registrar_total_count
|
696
|
-
attr_accessor :registrar_office_total_count
|
697
|
-
attr_accessor :registrar_management_office_count
|
698
|
-
attr_accessor :registrar_office_in_management_structure_count
|
699
|
-
attr_accessor :registrar_office_in_local_structure_count
|
700
|
-
attr_accessor :registrar_branches_count
|
701
|
-
attr_accessor :employees_in_management_count
|
702
|
-
attr_accessor :employees_in_registrars_count
|
703
|
-
attr_accessor :employees_in_branches_count
|
704
|
-
attr_accessor :state_employees_in_management_count
|
705
|
-
attr_accessor :state_employees_in_registrars_count
|
706
|
-
attr_accessor :state_employees_in_branches_count
|
707
|
-
attr_accessor :municipal_employees_in_management_count
|
708
|
-
attr_accessor :municipal_employees_in_registrars_count
|
709
|
-
attr_accessor :municipal_employees_in_branches_count
|
710
|
-
attr_accessor :service_employees_in_management_count
|
711
|
-
attr_accessor :service_employees_in_registrars_count
|
712
|
-
attr_accessor :service_employees_in_branches_count
|
713
|
-
end
|
714
|
-
|
715
|
-
class StatementOfApostille < Soybean::ComplexType
|
716
|
-
attr_accessor :statement_number
|
717
|
-
attr_accessor :statement_date
|
718
|
-
attr_accessor :applicant
|
719
|
-
attr_accessor :registrar_identity
|
720
|
-
attr_accessor :record_identifier
|
721
|
-
attr_accessor :country_to
|
722
|
-
attr_accessor :docs
|
723
|
-
end
|
724
|
-
|
725
|
-
class StatementOfRequestingDocuments < Soybean::ComplexType
|
726
|
-
attr_accessor :statement_number
|
727
|
-
attr_accessor :statement_date
|
728
|
-
attr_accessor :applicant
|
729
|
-
attr_accessor :registrar_identity
|
730
|
-
attr_accessor :record_identifier
|
731
|
-
attr_accessor :country_from
|
732
|
-
attr_accessor :registrar_name_from
|
733
|
-
attr_accessor :doc_type
|
734
|
-
attr_accessor :act_type
|
735
|
-
attr_accessor :act_number
|
736
|
-
attr_accessor :act_date
|
737
|
-
attr_accessor :act_date2
|
738
|
-
attr_accessor :name_of_act_registrar
|
739
|
-
attr_accessor :subj1_initials
|
740
|
-
attr_accessor :subj1_birth_date
|
741
|
-
attr_accessor :subj1_birth_date2
|
742
|
-
attr_accessor :subj1_birth_place
|
743
|
-
attr_accessor :subj2_initials
|
744
|
-
attr_accessor :subj2_birth_date
|
745
|
-
attr_accessor :subj2_birth_date2
|
746
|
-
attr_accessor :subj2_birth_place
|
747
|
-
attr_accessor :request_reason
|
748
|
-
attr_accessor :request_rights
|
749
|
-
attr_accessor :registrar_name_of_app_residence
|
750
|
-
attr_accessor :registrar_address_of_app_residence
|
751
|
-
attr_accessor :tax
|
752
|
-
attr_accessor :receipt_date
|
753
|
-
attr_accessor :issue_date
|
754
|
-
end
|
755
|
-
|
756
|
-
class TimeOfReceipt < Soybean::ComplexType
|
757
|
-
attr_accessor :statement_type
|
758
|
-
attr_accessor :receipt_date
|
759
|
-
attr_accessor :time_hour
|
760
|
-
attr_accessor :time_minute
|
761
|
-
attr_accessor :cabinet_name
|
762
|
-
end
|
763
|
-
|
764
|
-
class DocumentVerificationStatusType < ::String
|
765
|
-
Document_pending_verification = new("document_pending_verification")
|
766
|
-
Document_verified = new("document_verified")
|
767
|
-
Document_void = new("document_void")
|
768
|
-
Undefined = new("undefined")
|
769
|
-
end
|
770
|
-
|
771
|
-
class ActRecordType < ::String
|
772
|
-
Adoption = new("adoption")
|
773
|
-
Birth = new("birth")
|
774
|
-
Death = new("death")
|
775
|
-
Divorce = new("divorce")
|
776
|
-
Filiation = new("filiation")
|
777
|
-
Marriage = new("marriage")
|
778
|
-
Name_change = new("name_change")
|
779
|
-
Undefined = new("undefined")
|
780
|
-
end
|
781
|
-
|
782
|
-
class CorrectionSubject < ::String
|
783
|
-
Child_or_dead_or_name_changer = new("child_or_dead_or_name_changer")
|
784
|
-
Father_or_husband = new("father_or_husband")
|
785
|
-
First_adopter = new("first_adopter")
|
786
|
-
Mother_or_wife = new("mother_or_wife")
|
787
|
-
Second_adopter = new("second_adopter")
|
788
|
-
Undefined = new("undefined")
|
789
|
-
end
|
790
|
-
|
791
|
-
class CorrectionFieldDueNameChange < ::String
|
792
|
-
First_name = new("first_name")
|
793
|
-
Last_name = new("last_name")
|
794
|
-
Middle_name = new("middle_name")
|
795
|
-
Undefined = new("undefined")
|
796
|
-
end
|
797
|
-
|
798
|
-
class GenderType < ::String
|
799
|
-
Female = new("female")
|
800
|
-
Male = new("male")
|
801
|
-
Undefined = new("undefined")
|
802
|
-
end
|
803
|
-
|
804
|
-
class CitizenshipType < ::String
|
805
|
-
Citizen = new("citizen")
|
806
|
-
Citizenship_is_not_set = new("citizenship_is_not_set")
|
807
|
-
Not_a_citizen = new("not_a_citizen")
|
808
|
-
Stateless_person = new("stateless_person")
|
809
|
-
Undefined = new("undefined")
|
810
|
-
end
|
811
|
-
|
812
|
-
class ApostilleDocType < ::String
|
813
|
-
Certificate = new("certificate")
|
814
|
-
Notice_of_absence = new("notice_of_absence")
|
815
|
-
Reference = new("reference")
|
816
|
-
Undefined = new("undefined")
|
817
|
-
end
|
818
|
-
|
819
|
-
class StateTaxType < ::String
|
820
|
-
Apostille = new("apostille")
|
821
|
-
Change_of_name = new("change_of_name")
|
822
|
-
Corrections_on_art_69 = new("corrections_on_art_69")
|
823
|
-
Corrections_on_art_70 = new("corrections_on_art_70")
|
824
|
-
Discovery_of_documents = new("discovery_of_documents")
|
825
|
-
Divorce_by_court_order = new("divorce_by_court_order")
|
826
|
-
Divorce_by_mutual_consent = new("divorce_by_mutual_consent")
|
827
|
-
Divorce_by_statement_of_one = new("divorce_by_statement_of_one")
|
828
|
-
Filiation = new("filiation")
|
829
|
-
Issuance_of_certificate = new("issuance_of_certificate")
|
830
|
-
Issuance_of_reference = new("issuance_of_reference")
|
831
|
-
Marriage = new("marriage")
|
832
|
-
Undefined = new("undefined")
|
833
|
-
end
|
834
|
-
|
835
|
-
class ApostillePerformType < ::String
|
836
|
-
Performed = new("performed")
|
837
|
-
Refused = new("refused")
|
838
|
-
Undefined = new("undefined")
|
839
|
-
end
|
840
|
-
|
841
|
-
class BirthType < ::String
|
842
|
-
Deadborn = new("deadborn")
|
843
|
-
Liveborn = new("liveborn")
|
844
|
-
Undefined = new("undefined")
|
845
|
-
Unknown = new("unknown")
|
846
|
-
end
|
847
|
-
|
848
|
-
class CertificateIssueType < ::String
|
849
|
-
Issued_due_to_changes = new("issued_due_to_changes")
|
850
|
-
Issued_primary = new("issued_primary")
|
851
|
-
Issued_repeated = new("issued_repeated")
|
852
|
-
Obtained = new("obtained")
|
853
|
-
Spoiled = new("spoiled")
|
854
|
-
Undefined = new("undefined")
|
855
|
-
end
|
856
|
-
|
857
|
-
class CourtDecisionInFatherStatementOfFiliationType < ::String
|
858
|
-
Deprived_of_parental_rights = new("deprived_of_parental_rights")
|
859
|
-
Incompetent = new("incompetent")
|
860
|
-
Missing = new("missing")
|
861
|
-
Undefined = new("undefined")
|
862
|
-
end
|
863
|
-
|
864
|
-
class CourtDecisionOfDeathType < ::String
|
865
|
-
Declaring_a_person_dead = new("declaring_a_person_dead")
|
866
|
-
Establishing_fact_of_death = new("establishing_fact_of_death")
|
867
|
-
Undefined = new("undefined")
|
868
|
-
end
|
869
|
-
|
870
|
-
class CourtDecisionOfDivorceWithStatementType < ::String
|
871
|
-
Incompetent = new("incompetent")
|
872
|
-
Missing = new("missing")
|
873
|
-
Undefined = new("undefined")
|
874
|
-
end
|
875
|
-
|
876
|
-
class CourtDecisionOfFiliationType < ::String
|
877
|
-
Filiation = new("filiation")
|
878
|
-
Recognition_of_paternity = new("recognition_of_paternity")
|
879
|
-
Undefined = new("undefined")
|
880
|
-
end
|
881
|
-
|
882
|
-
class MedicalCertificateOfDeathType < ::String
|
883
|
-
Definitive = new("definitive")
|
884
|
-
Draft = new("draft")
|
885
|
-
Instead_of_draft = new("instead_of_draft")
|
886
|
-
Undefined = new("undefined")
|
887
|
-
end
|
888
|
-
|
889
|
-
class WebStatementType < ::String
|
890
|
-
Adoption = new("adoption")
|
891
|
-
Apostille = new("apostille")
|
892
|
-
Birth = new("birth")
|
893
|
-
Correction = new("correction")
|
894
|
-
Death = new("death")
|
895
|
-
Divorce = new("divorce")
|
896
|
-
Filiation = new("filiation")
|
897
|
-
Marriage = new("marriage")
|
898
|
-
Name_change = new("name_change")
|
899
|
-
Reissuing_documents = new("reissuing_documents")
|
900
|
-
Requesting_documents = new("requesting_documents")
|
901
|
-
Undefined = new("undefined")
|
902
|
-
end
|
903
|
-
|
904
|
-
class MaritalStatusType < ::String
|
905
|
-
Divorced = new("divorced")
|
906
|
-
Married = new("married")
|
907
|
-
Undefined = new("undefined")
|
908
|
-
Widowed = new("widowed")
|
909
|
-
end
|
910
|
-
|
911
|
-
class ReferenceFormType < ::String
|
912
|
-
Adoption_30 = new("adoption_30")
|
913
|
-
Birth_24 = new("birth_24")
|
914
|
-
Birth_24a = new("birth_24a")
|
915
|
-
Birth_25 = new("birth_25")
|
916
|
-
Birth_25a = new("birth_25a")
|
917
|
-
Birth_26 = new("birth_26")
|
918
|
-
Birth_33 = new("birth_33")
|
919
|
-
Death_33 = new("death_33")
|
920
|
-
Death_33a = new("death_33a")
|
921
|
-
Death_34 = new("death_34")
|
922
|
-
Divorce_29 = new("divorce_29")
|
923
|
-
Filiation_31 = new("filiation_31")
|
924
|
-
Marriage_27 = new("marriage_27")
|
925
|
-
Marriage_28 = new("marriage_28")
|
926
|
-
Name_change_32 = new("name_change_32")
|
927
|
-
Undefined = new("undefined")
|
928
|
-
end
|
929
|
-
|
930
|
-
class RegistrarType < ::String
|
931
|
-
Archive = new("archive")
|
932
|
-
Existing_branch = new("existing_branch")
|
933
|
-
Inactive_branch = new("inactive_branch")
|
934
|
-
Management = new("management")
|
935
|
-
Registry_office = new("registry_office")
|
936
|
-
Undefined = new("undefined")
|
937
|
-
end
|
938
|
-
|
939
|
-
class RequestedDocType < ::String
|
940
|
-
Certificate = new("certificate")
|
941
|
-
Copy_of_act_record = new("copy_of_act_record")
|
942
|
-
Reference = new("reference")
|
943
|
-
Undefined = new("undefined")
|
944
|
-
end
|
945
|
-
|
946
|
-
|
947
|
-
end
|