iaa 0.1.0
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.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/.rspec +2 -0
- data/.travis.yml +6 -0
- data/CONTRIBUTING.md +15 -0
- data/Dockerfile +8 -0
- data/Gemfile +4 -0
- data/LICENSE.md +31 -0
- data/README.md +98 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/docker-compose.yml +4 -0
- data/iaa.gemspec +36 -0
- data/lib/base_form.rb +80 -0
- data/lib/form_7600a.rb +392 -0
- data/lib/form_7600b.rb +1608 -0
- data/lib/iaa/version.rb +3 -0
- data/lib/iaa.rb +11 -0
- data/lib/mappings/7600A.json +383 -0
- data/lib/mappings/7600B.json +1447 -0
- data/lib/pdfs/7600A.pdf +0 -0
- data/lib/pdfs/7600B.pdf +0 -0
- data/tmp/humans.txt +0 -0
- metadata +153 -0
data/lib/form_7600b.rb
ADDED
@@ -0,0 +1,1608 @@
|
|
1
|
+
module IAA
|
2
|
+
class Form7600B < BaseForm
|
3
|
+
def self.form_name
|
4
|
+
"7600B"
|
5
|
+
end
|
6
|
+
|
7
|
+
def requesting_agency_office_name=(new_requesting_agency_office_name)
|
8
|
+
set_attr("Requesting Agency Office Name", new_requesting_agency_office_name)
|
9
|
+
end
|
10
|
+
|
11
|
+
def requesting_agency_office_name
|
12
|
+
get_attr("Requesting Agency Office Name")
|
13
|
+
end
|
14
|
+
|
15
|
+
def servicing_agency_office_name=(new_servicing_agency_office_name)
|
16
|
+
set_attr("Servicing Agency Office Name", new_servicing_agency_office_name)
|
17
|
+
end
|
18
|
+
|
19
|
+
def servicing_agency_office_name
|
20
|
+
get_attr("Servicing Agency Office Name")
|
21
|
+
end
|
22
|
+
|
23
|
+
def requesting_agency_office_address=(new_requesting_agency_office_address)
|
24
|
+
set_attr("Requesting Agency Office Address", new_requesting_agency_office_address)
|
25
|
+
end
|
26
|
+
|
27
|
+
def requesting_agency_office_address
|
28
|
+
get_attr("Requesting Agency Office Address")
|
29
|
+
end
|
30
|
+
|
31
|
+
def servicing_agency_office_address=(new_servicing_agency_office_address)
|
32
|
+
set_attr("Servicing Agency Office Address", new_servicing_agency_office_address)
|
33
|
+
end
|
34
|
+
|
35
|
+
def servicing_agency_office_address
|
36
|
+
get_attr("Servicing Agency Office Address")
|
37
|
+
end
|
38
|
+
|
39
|
+
def order_action=(new_order_action)
|
40
|
+
set_attr("ORDER ACTION", new_order_action)
|
41
|
+
end
|
42
|
+
|
43
|
+
def order_action
|
44
|
+
get_attr("ORDER ACTION")
|
45
|
+
end
|
46
|
+
|
47
|
+
def modification=(new_modification)
|
48
|
+
set_attr("Modification", new_modification)
|
49
|
+
end
|
50
|
+
|
51
|
+
def modification
|
52
|
+
get_attr("Modification")
|
53
|
+
end
|
54
|
+
|
55
|
+
def cancellation=(new_cancellation)
|
56
|
+
set_attr("Cancellation", new_cancellation)
|
57
|
+
end
|
58
|
+
|
59
|
+
def cancellation
|
60
|
+
get_attr("Cancellation")
|
61
|
+
end
|
62
|
+
|
63
|
+
def line=(new_line)
|
64
|
+
set_attr("Line", new_line)
|
65
|
+
end
|
66
|
+
|
67
|
+
def line
|
68
|
+
get_attr("Line")
|
69
|
+
end
|
70
|
+
|
71
|
+
def line1=(new_line1)
|
72
|
+
set_attr("Line1", new_line1)
|
73
|
+
end
|
74
|
+
|
75
|
+
def line1
|
76
|
+
get_attr("Line1")
|
77
|
+
end
|
78
|
+
|
79
|
+
def line2=(new_line2)
|
80
|
+
set_attr("Line2", new_line2)
|
81
|
+
end
|
82
|
+
|
83
|
+
def line2
|
84
|
+
get_attr("Line2")
|
85
|
+
end
|
86
|
+
|
87
|
+
def original_line_funding=(new_original_line_funding)
|
88
|
+
set_attr("Original Line Funding", new_original_line_funding)
|
89
|
+
end
|
90
|
+
|
91
|
+
def original_line_funding
|
92
|
+
get_attr("Original Line Funding")
|
93
|
+
end
|
94
|
+
|
95
|
+
def original_line_funding1=(new_original_line_funding1)
|
96
|
+
set_attr("Original Line Funding1", new_original_line_funding1)
|
97
|
+
end
|
98
|
+
|
99
|
+
def original_line_funding1
|
100
|
+
get_attr("Original Line Funding1")
|
101
|
+
end
|
102
|
+
|
103
|
+
def original_line_funding2=(new_original_line_funding2)
|
104
|
+
set_attr("Orginal Line Funding2", new_original_line_funding2)
|
105
|
+
end
|
106
|
+
|
107
|
+
def original_line_funding2
|
108
|
+
get_attr("Orginal Line Funding2")
|
109
|
+
end
|
110
|
+
|
111
|
+
def original_line_funding3=(new_original_line_funding3)
|
112
|
+
set_attr("Orginal Line Funding3", new_original_line_funding3)
|
113
|
+
end
|
114
|
+
|
115
|
+
def original_line_funding3
|
116
|
+
get_attr("Orginal Line Funding3")
|
117
|
+
end
|
118
|
+
|
119
|
+
def original_line_funding_total=(new_original_line_funding_total)
|
120
|
+
set_attr("Orginal Line Funding Total", new_original_line_funding_total)
|
121
|
+
end
|
122
|
+
|
123
|
+
def original_line_funding_total
|
124
|
+
get_attr("Orginal Line Funding Total")
|
125
|
+
end
|
126
|
+
|
127
|
+
def cumulative_funding_changes=(new_cumulative_funding_changes)
|
128
|
+
set_attr("Cumulative Funding Changes", new_cumulative_funding_changes)
|
129
|
+
end
|
130
|
+
|
131
|
+
def cumulative_funding_changes
|
132
|
+
get_attr("Cumulative Funding Changes")
|
133
|
+
end
|
134
|
+
|
135
|
+
def cumulative_funding_changes1=(new_cumulative_funding_changes1)
|
136
|
+
set_attr("Cumulative Funding Changes1", new_cumulative_funding_changes1)
|
137
|
+
end
|
138
|
+
|
139
|
+
def cumulative_funding_changes1
|
140
|
+
get_attr("Cumulative Funding Changes1")
|
141
|
+
end
|
142
|
+
|
143
|
+
def cumulative_funding_changes2=(new_cumulative_funding_changes2)
|
144
|
+
set_attr("Cumulative Funding Changes2", new_cumulative_funding_changes2)
|
145
|
+
end
|
146
|
+
|
147
|
+
def cumulative_funding_changes2
|
148
|
+
get_attr("Cumulative Funding Changes2")
|
149
|
+
end
|
150
|
+
|
151
|
+
def cumulative_funding_changes1=(new_cumulative_funding_changes1)
|
152
|
+
set_attr("Cumulative Funding Changes3", new_cumulative_funding_changes1)
|
153
|
+
end
|
154
|
+
|
155
|
+
def cumulative_funding_changes1
|
156
|
+
get_attr("Cumulative Funding Changes3")
|
157
|
+
end
|
158
|
+
|
159
|
+
def cumulative_funding_changes_total=(new_cumulative_funding_changes_total)
|
160
|
+
set_attr("Cumulative Funding Changes Total", new_cumulative_funding_changes_total)
|
161
|
+
end
|
162
|
+
|
163
|
+
def cumulative_funding_changes_total
|
164
|
+
get_attr("Cumulative Funding Changes Total")
|
165
|
+
end
|
166
|
+
|
167
|
+
def funding_change=(new_funding_change)
|
168
|
+
set_attr("Funding Change", new_funding_change)
|
169
|
+
end
|
170
|
+
|
171
|
+
def funding_change
|
172
|
+
get_attr("Funding Change")
|
173
|
+
end
|
174
|
+
|
175
|
+
def funding_change1=(new_funding_change1)
|
176
|
+
set_attr("Funding Change1", new_funding_change1)
|
177
|
+
end
|
178
|
+
|
179
|
+
def funding_change1
|
180
|
+
get_attr("Funding Change1")
|
181
|
+
end
|
182
|
+
|
183
|
+
def funding_change2=(new_funding_change2)
|
184
|
+
set_attr("Funding Change2", new_funding_change2)
|
185
|
+
end
|
186
|
+
|
187
|
+
def funding_change2
|
188
|
+
get_attr("Funding Change2")
|
189
|
+
end
|
190
|
+
|
191
|
+
def funding_change3=(new_funding_change3)
|
192
|
+
set_attr("Funding Change3", new_funding_change3)
|
193
|
+
end
|
194
|
+
|
195
|
+
def funding_change3
|
196
|
+
get_attr("Funding Change3")
|
197
|
+
end
|
198
|
+
|
199
|
+
def funding_change_total=(new_funding_change_total)
|
200
|
+
set_attr("Funding Change Total", new_funding_change_total)
|
201
|
+
end
|
202
|
+
|
203
|
+
def funding_change_total
|
204
|
+
get_attr("Funding Change Total")
|
205
|
+
end
|
206
|
+
|
207
|
+
def total_modified_obligation=(new_total_modified_obligation)
|
208
|
+
set_attr("Total Modified Obligation", new_total_modified_obligation)
|
209
|
+
end
|
210
|
+
|
211
|
+
def total_modified_obligation
|
212
|
+
get_attr("Total Modified Obligation")
|
213
|
+
end
|
214
|
+
|
215
|
+
def total_modified_obligation1=(new_total_modified_obligation1)
|
216
|
+
set_attr("Total Modified Obligation1", new_total_modified_obligation1)
|
217
|
+
end
|
218
|
+
|
219
|
+
def total_modified_obligation1
|
220
|
+
get_attr("Total Modified Obligation1")
|
221
|
+
end
|
222
|
+
|
223
|
+
def total_modified_obligation2=(new_total_modified_obligation2)
|
224
|
+
set_attr("Total Modified Obligation2", new_total_modified_obligation2)
|
225
|
+
end
|
226
|
+
|
227
|
+
def total_modified_obligation2
|
228
|
+
get_attr("Total Modified Obligation2")
|
229
|
+
end
|
230
|
+
|
231
|
+
def total_modified_obligation2=(new_total_modified_obligation2)
|
232
|
+
set_attr("Total Modified Obligation3", new_total_modified_obligation2)
|
233
|
+
end
|
234
|
+
|
235
|
+
def total_modified_obligation2
|
236
|
+
get_attr("Total Modified Obligation3")
|
237
|
+
end
|
238
|
+
|
239
|
+
def total_modified_obligation_total=(new_total_modified_obligation_total)
|
240
|
+
set_attr("Total Modified Obligation Total", new_total_modified_obligation_total)
|
241
|
+
end
|
242
|
+
|
243
|
+
def total_modified_obligation_total
|
244
|
+
get_attr("Total Modified Obligation Total")
|
245
|
+
end
|
246
|
+
|
247
|
+
def total_advance_amount=(new_total_advance_amount)
|
248
|
+
set_attr("Total Advance Amount", new_total_advance_amount)
|
249
|
+
end
|
250
|
+
|
251
|
+
def total_advance_amount
|
252
|
+
get_attr("Total Advance Amount")
|
253
|
+
end
|
254
|
+
|
255
|
+
def total_advance_amount1=(new_total_advance_amount1)
|
256
|
+
set_attr("Total Advance Amount1", new_total_advance_amount1)
|
257
|
+
end
|
258
|
+
|
259
|
+
def total_advance_amount1
|
260
|
+
get_attr("Total Advance Amount1")
|
261
|
+
end
|
262
|
+
|
263
|
+
def total_advance_amount2=(new_total_advance_amount2)
|
264
|
+
set_attr("Total Advance Amount2", new_total_advance_amount2)
|
265
|
+
end
|
266
|
+
|
267
|
+
def total_advance_amount2
|
268
|
+
get_attr("Total Advance Amount2")
|
269
|
+
end
|
270
|
+
|
271
|
+
def total_advance_amount3=(new_total_advance_amount3)
|
272
|
+
set_attr("Total Advance Amount3", new_total_advance_amount3)
|
273
|
+
end
|
274
|
+
|
275
|
+
def total_advance_amount3
|
276
|
+
get_attr("Total Advance Amount3")
|
277
|
+
end
|
278
|
+
|
279
|
+
def total_advance_amount_total=(new_total_advance_amount_total)
|
280
|
+
set_attr("Total Advance Amount Total", new_total_advance_amount_total)
|
281
|
+
end
|
282
|
+
|
283
|
+
def total_advance_amount_total
|
284
|
+
get_attr("Total Advance Amount Total")
|
285
|
+
end
|
286
|
+
|
287
|
+
def net_modified_amount=(new_net_modified_amount)
|
288
|
+
set_attr("Net Modified Amount", new_net_modified_amount)
|
289
|
+
end
|
290
|
+
|
291
|
+
def net_modified_amount
|
292
|
+
get_attr("Net Modified Amount")
|
293
|
+
end
|
294
|
+
|
295
|
+
def net_modified_amount1=(new_net_modified_amount1)
|
296
|
+
set_attr("Net Modified Amount1", new_net_modified_amount1)
|
297
|
+
end
|
298
|
+
|
299
|
+
def net_modified_amount1
|
300
|
+
get_attr("Net Modified Amount1")
|
301
|
+
end
|
302
|
+
|
303
|
+
def net_modified_amount2=(new_net_modified_amount2)
|
304
|
+
set_attr("Net Modified Amount2", new_net_modified_amount2)
|
305
|
+
end
|
306
|
+
|
307
|
+
def net_modified_amount2
|
308
|
+
get_attr("Net Modified Amount2")
|
309
|
+
end
|
310
|
+
|
311
|
+
def net_modified_amount3=(new_net_modified_amount3)
|
312
|
+
set_attr("Net Modified Amount3", new_net_modified_amount3)
|
313
|
+
end
|
314
|
+
|
315
|
+
def net_modified_amount3
|
316
|
+
get_attr("Net Modified Amount3")
|
317
|
+
end
|
318
|
+
|
319
|
+
def net_modified_amount_total=(new_net_modified_amount_total)
|
320
|
+
set_attr("Net Modified Amount Total", new_net_modified_amount_total)
|
321
|
+
end
|
322
|
+
|
323
|
+
def net_modified_amount_total
|
324
|
+
get_attr("Net Modified Amount Total")
|
325
|
+
end
|
326
|
+
|
327
|
+
def start_date=(new_start_date)
|
328
|
+
set_attr("Start Date", new_start_date)
|
329
|
+
end
|
330
|
+
|
331
|
+
def start_date
|
332
|
+
get_attr("Start Date")
|
333
|
+
end
|
334
|
+
|
335
|
+
def end_date=(new_end_date)
|
336
|
+
set_attr("End Date", new_end_date)
|
337
|
+
end
|
338
|
+
|
339
|
+
def end_date
|
340
|
+
get_attr("End Date")
|
341
|
+
end
|
342
|
+
|
343
|
+
def gt_and_c_number=(new_gt_and_c_number)
|
344
|
+
set_attr("GT&C #", new_gt_and_c_number)
|
345
|
+
end
|
346
|
+
|
347
|
+
def gt_and_c_number
|
348
|
+
get_attr("GT&C #")
|
349
|
+
end
|
350
|
+
|
351
|
+
def order_number=(new_order_number)
|
352
|
+
set_attr("Order #", new_order_number)
|
353
|
+
end
|
354
|
+
|
355
|
+
def order_number
|
356
|
+
get_attr("Order #")
|
357
|
+
end
|
358
|
+
|
359
|
+
def mod_number=(new_mod_number)
|
360
|
+
set_attr("Mod #", new_mod_number)
|
361
|
+
end
|
362
|
+
|
363
|
+
def mod_number
|
364
|
+
get_attr("Mod #")
|
365
|
+
end
|
366
|
+
|
367
|
+
def tracking_number=(new_tracking_number)
|
368
|
+
set_attr("Tracking Number Optional", new_tracking_number)
|
369
|
+
end
|
370
|
+
|
371
|
+
def tracking_number
|
372
|
+
get_attr("Tracking Number Optional")
|
373
|
+
end
|
374
|
+
|
375
|
+
def line_number=(new_line_number)
|
376
|
+
set_attr("Line Number", new_line_number)
|
377
|
+
end
|
378
|
+
|
379
|
+
def line_number
|
380
|
+
get_attr("Line Number")
|
381
|
+
end
|
382
|
+
|
383
|
+
def requesting_agency_alc=(new_requesting_agency_alc)
|
384
|
+
set_attr("Requesting Agency ALC", new_requesting_agency_alc)
|
385
|
+
end
|
386
|
+
|
387
|
+
def requesting_agency_alc
|
388
|
+
get_attr("Requesting Agency ALC")
|
389
|
+
end
|
390
|
+
|
391
|
+
def servicing_asgency_alc=(new_servicing_asgency_alc)
|
392
|
+
set_attr("Servicing Agency ALC", new_servicing_asgency_alc)
|
393
|
+
end
|
394
|
+
|
395
|
+
def servicing_asgency_alc
|
396
|
+
get_attr("Servicing Agency ALC")
|
397
|
+
end
|
398
|
+
|
399
|
+
def requesting_agency_sp=(new_requesting_agency_sp)
|
400
|
+
set_attr("Requesting Agency SP", new_requesting_agency_sp)
|
401
|
+
end
|
402
|
+
|
403
|
+
def requesting_agency_sp
|
404
|
+
get_attr("Requesting Agency SP")
|
405
|
+
end
|
406
|
+
|
407
|
+
def requesting_agency_ata=(new_requesting_agency_ata)
|
408
|
+
set_attr("Requesting Agency ATA", new_requesting_agency_ata)
|
409
|
+
end
|
410
|
+
|
411
|
+
def requesting_agency_ata
|
412
|
+
get_attr("Requesting Agency ATA")
|
413
|
+
end
|
414
|
+
|
415
|
+
def requesting_agency_aid=(new_requesting_agency_aid)
|
416
|
+
set_attr("Requesting Agency AID", new_requesting_agency_aid)
|
417
|
+
end
|
418
|
+
|
419
|
+
def requesting_agency_aid
|
420
|
+
get_attr("Requesting Agency AID")
|
421
|
+
end
|
422
|
+
|
423
|
+
def requesting_agency_bpoa=(new_requesting_agency_bpoa)
|
424
|
+
set_attr("Requesting Agency BPOA", new_requesting_agency_bpoa)
|
425
|
+
end
|
426
|
+
|
427
|
+
def requesting_agency_bpoa
|
428
|
+
get_attr("Requesting Agency BPOA")
|
429
|
+
end
|
430
|
+
|
431
|
+
def requesting_agency_epoa=(new_requesting_agency_epoa)
|
432
|
+
set_attr("Requesting Agency EPOA", new_requesting_agency_epoa)
|
433
|
+
end
|
434
|
+
|
435
|
+
def requesting_agency_epoa
|
436
|
+
get_attr("Requesting Agency EPOA")
|
437
|
+
end
|
438
|
+
|
439
|
+
def requesting_agency_a=(new_requesting_agency_a)
|
440
|
+
set_attr("Requesting Agency A", new_requesting_agency_a)
|
441
|
+
end
|
442
|
+
|
443
|
+
def requesting_agency_a
|
444
|
+
get_attr("Requesting Agency A")
|
445
|
+
end
|
446
|
+
|
447
|
+
def requesting_agency_mauin=(new_requesting_agency_mauin)
|
448
|
+
set_attr("Requesting Agency MAIN", new_requesting_agency_mauin)
|
449
|
+
end
|
450
|
+
|
451
|
+
def requesting_agency_mauin
|
452
|
+
get_attr("Requesting Agency MAIN")
|
453
|
+
end
|
454
|
+
|
455
|
+
def requesting_agency_sub=(new_requesting_agency_sub)
|
456
|
+
set_attr("Requesting Agency SUB", new_requesting_agency_sub)
|
457
|
+
end
|
458
|
+
|
459
|
+
def requesting_agency_sub
|
460
|
+
get_attr("Requesting Agency SUB")
|
461
|
+
end
|
462
|
+
|
463
|
+
def servicing_agency_sp=(new_servicing_agency_sp)
|
464
|
+
set_attr("Servicing Agency SP", new_servicing_agency_sp)
|
465
|
+
end
|
466
|
+
|
467
|
+
def servicing_agency_sp
|
468
|
+
get_attr("Servicing Agency SP")
|
469
|
+
end
|
470
|
+
|
471
|
+
def servicing_agency_ata=(new_servicing_agency_ata)
|
472
|
+
set_attr("Servicing Agency ATA", new_servicing_agency_ata)
|
473
|
+
end
|
474
|
+
|
475
|
+
def servicing_agency_ata
|
476
|
+
get_attr("Servicing Agency ATA")
|
477
|
+
end
|
478
|
+
|
479
|
+
def servicing_agency_aid=(new_servicing_agency_aid)
|
480
|
+
set_attr("Servicing Agency AID", new_servicing_agency_aid)
|
481
|
+
end
|
482
|
+
|
483
|
+
def servicing_agency_aid
|
484
|
+
get_attr("Servicing Agency AID")
|
485
|
+
end
|
486
|
+
|
487
|
+
def servicing_agency_bpoa=(new_servicing_agency_bpoa)
|
488
|
+
set_attr("Servicing Agency BPOA", new_servicing_agency_bpoa)
|
489
|
+
end
|
490
|
+
|
491
|
+
def servicing_agency_bpoa
|
492
|
+
get_attr("Servicing Agency BPOA")
|
493
|
+
end
|
494
|
+
|
495
|
+
def servicing_agency_epoa=(new_servicing_agency_epoa)
|
496
|
+
set_attr("Servicing Agency EPOA", new_servicing_agency_epoa)
|
497
|
+
end
|
498
|
+
|
499
|
+
def servicing_agency_epoa
|
500
|
+
get_attr("Servicing Agency EPOA")
|
501
|
+
end
|
502
|
+
|
503
|
+
def servicing_agency_a=(new_servicing_agency_a)
|
504
|
+
set_attr("Servicing Agency A", new_servicing_agency_a)
|
505
|
+
end
|
506
|
+
|
507
|
+
def servicing_agency_a
|
508
|
+
get_attr("Servicing Agency A")
|
509
|
+
end
|
510
|
+
|
511
|
+
def servicing_agency_main=(new_servicing_agency_main)
|
512
|
+
set_attr("Servicing Agency MAIN", new_servicing_agency_main)
|
513
|
+
end
|
514
|
+
|
515
|
+
def servicing_agency_main
|
516
|
+
get_attr("Servicing Agency MAIN")
|
517
|
+
end
|
518
|
+
|
519
|
+
def servicing_agency_sub=(new_servicing_agency_sub)
|
520
|
+
set_attr("Servicing Agency SUB", new_servicing_agency_sub)
|
521
|
+
end
|
522
|
+
|
523
|
+
def servicing_agency_sub
|
524
|
+
get_attr("Servicing Agency SUB")
|
525
|
+
end
|
526
|
+
|
527
|
+
def requesting_agency_funding_information_tas=(new_requesting_agency_funding_information_tas)
|
528
|
+
set_attr("Requesting Agency Funding Information TAS", new_requesting_agency_funding_information_tas)
|
529
|
+
end
|
530
|
+
|
531
|
+
def requesting_agency_funding_information_tas
|
532
|
+
get_attr("Requesting Agency Funding Information TAS")
|
533
|
+
end
|
534
|
+
|
535
|
+
def servicing_agency_funding_information_tas=(new_servicing_agency_funding_information_tas)
|
536
|
+
set_attr("Servicing Agency Funding InformationTAS", new_servicing_agency_funding_information_tas)
|
537
|
+
end
|
538
|
+
|
539
|
+
def servicing_agency_funding_information_tas
|
540
|
+
get_attr("Servicing Agency Funding InformationTAS")
|
541
|
+
end
|
542
|
+
|
543
|
+
def requesting_agency_funding_information_betc=(new_requesting_agency_funding_information_betc)
|
544
|
+
set_attr("Requesting Agency Funding Information BETC", new_requesting_agency_funding_information_betc)
|
545
|
+
end
|
546
|
+
|
547
|
+
def requesting_agency_funding_information_betc
|
548
|
+
get_attr("Requesting Agency Funding Information BETC")
|
549
|
+
end
|
550
|
+
|
551
|
+
def servicing_agency_funding_information_betc=(new_servicing_agency_funding_information_betc)
|
552
|
+
set_attr("Servicing Agency Funding InformationBETC", new_servicing_agency_funding_information_betc)
|
553
|
+
end
|
554
|
+
|
555
|
+
def servicing_agency_funding_information_betc
|
556
|
+
get_attr("Servicing Agency Funding InformationBETC")
|
557
|
+
end
|
558
|
+
|
559
|
+
def requesting_agency_funding_information_object_class_code=(new_requesting_agency_funding_information_object_class_code)
|
560
|
+
set_attr("Requesting Agency Funding Information Object Class Code", new_requesting_agency_funding_information_object_class_code)
|
561
|
+
end
|
562
|
+
|
563
|
+
def requesting_agency_funding_information_object_class_code
|
564
|
+
get_attr("Requesting Agency Funding Information Object Class Code")
|
565
|
+
end
|
566
|
+
|
567
|
+
def servicing_agency_funding_information_object_class_code=(new_servicing_agency_funding_information_object_class_code)
|
568
|
+
set_attr("Servicing Agency Funding InformationObject Class Code", new_servicing_agency_funding_information_object_class_code)
|
569
|
+
end
|
570
|
+
|
571
|
+
def servicing_agency_funding_information_object_class_code
|
572
|
+
get_attr("Servicing Agency Funding InformationObject Class Code")
|
573
|
+
end
|
574
|
+
|
575
|
+
def requesting_agency_funding_information_bpn=(new_requesting_agency_funding_information_bpn)
|
576
|
+
set_attr("Requesting Agency Funding Information BPN", new_requesting_agency_funding_information_bpn)
|
577
|
+
end
|
578
|
+
|
579
|
+
def requesting_agency_funding_information_bpn
|
580
|
+
get_attr("Requesting Agency Funding Information BPN")
|
581
|
+
end
|
582
|
+
|
583
|
+
def servicing_agency_funding_information_bpn=(new_servicing_agency_funding_information_bpn)
|
584
|
+
set_attr("Servicing Agency Funding InformationBPN", new_servicing_agency_funding_information_bpn)
|
585
|
+
end
|
586
|
+
|
587
|
+
def servicing_agency_funding_information_bpn
|
588
|
+
get_attr("Servicing Agency Funding InformationBPN")
|
589
|
+
end
|
590
|
+
|
591
|
+
def requesting_agency_funding_information_bpn_plus_4=(new_requesting_agency_funding_information_bpn_plus_4)
|
592
|
+
set_attr("Requesting Agency Funding Information BPN + 4", new_requesting_agency_funding_information_bpn_plus_4)
|
593
|
+
end
|
594
|
+
|
595
|
+
def requesting_agency_funding_information_bpn_plus_4
|
596
|
+
get_attr("Requesting Agency Funding Information BPN + 4")
|
597
|
+
end
|
598
|
+
|
599
|
+
def servicing_agency_funding_information_bpn_plus_4=(new_servicing_agency_funding_information_bpn_plus_4)
|
600
|
+
set_attr("Servicing Agency Funding InformationBPN + 4", new_servicing_agency_funding_information_bpn_plus_4)
|
601
|
+
end
|
602
|
+
|
603
|
+
def servicing_agency_funding_information_bpn_plus_4
|
604
|
+
get_attr("Servicing Agency Funding InformationBPN + 4")
|
605
|
+
end
|
606
|
+
|
607
|
+
def requesting_agency_funding_information_additional_accounting_classification_information_optional=(new_requesting_agency_funding_information_additional_accounting_classification_information_optional)
|
608
|
+
set_attr("Requesting Agency Funding InformationAdditional Accounting Classification Information Optional", new_requesting_agency_funding_information_additional_accounting_classification_information_optional)
|
609
|
+
end
|
610
|
+
|
611
|
+
def requesting_agency_funding_information_additional_accounting_classification_information_optional
|
612
|
+
get_attr("Requesting Agency Funding InformationAdditional Accounting Classification Information Optional")
|
613
|
+
end
|
614
|
+
|
615
|
+
def servicing_agency_funding_information_additional_accounting_classification_information_optional=(new_servicing_agency_funding_information_additional_accounting_classification_information_optional)
|
616
|
+
set_attr("Servicing Agency Funding InformationAdditional Accounting Classification Information Optional", new_servicing_agency_funding_information_additional_accounting_classification_information_optional)
|
617
|
+
end
|
618
|
+
|
619
|
+
def servicing_agency_funding_information_additional_accounting_classification_information_optional
|
620
|
+
get_attr("Servicing Agency Funding InformationAdditional Accounting Classification Information Optional")
|
621
|
+
end
|
622
|
+
|
623
|
+
def requesting_agency_funding_expiration_date=(new_requesting_agency_funding_expiration_date)
|
624
|
+
set_attr("Requesting Agency Funding Expiration Date", new_requesting_agency_funding_expiration_date)
|
625
|
+
end
|
626
|
+
|
627
|
+
def requesting_agency_funding_expiration_date
|
628
|
+
get_attr("Requesting Agency Funding Expiration Date")
|
629
|
+
end
|
630
|
+
|
631
|
+
def requesting_agency_funding_cancellation_date=(new_requesting_agency_funding_cancellation_date)
|
632
|
+
set_attr("Requesting Agency Funding Cancellation Date", new_requesting_agency_funding_cancellation_date)
|
633
|
+
end
|
634
|
+
|
635
|
+
def requesting_agency_funding_cancellation_date
|
636
|
+
get_attr("Requesting Agency Funding Cancellation Date")
|
637
|
+
end
|
638
|
+
|
639
|
+
def project_number_title=(new_project_number_title)
|
640
|
+
set_attr("Project Number Title", new_project_number_title)
|
641
|
+
end
|
642
|
+
|
643
|
+
def project_number_title
|
644
|
+
get_attr("Project Number Title")
|
645
|
+
end
|
646
|
+
|
647
|
+
def description_of_products_and_or_services=(new_description_of_products_and_or_services)
|
648
|
+
set_attr("Description of Products andor Services including the Bona Fide Need for this Order State or attach a description of productsservices including the bona fide need for this Order", new_description_of_products_and_or_services)
|
649
|
+
end
|
650
|
+
|
651
|
+
def description_of_products_and_or_services
|
652
|
+
get_attr("Description of Products andor Services including the Bona Fide Need for this Order State or attach a description of productsservices including the bona fide need for this Order")
|
653
|
+
end
|
654
|
+
|
655
|
+
def naics_number=(new_naics_number)
|
656
|
+
set_attr("NAICS Number Optional", new_naics_number)
|
657
|
+
end
|
658
|
+
|
659
|
+
def naics_number
|
660
|
+
get_attr("NAICS Number Optional")
|
661
|
+
end
|
662
|
+
|
663
|
+
def quantity=(new_quantity)
|
664
|
+
set_attr("Quantity", new_quantity)
|
665
|
+
end
|
666
|
+
|
667
|
+
def quantity
|
668
|
+
get_attr("Quantity")
|
669
|
+
end
|
670
|
+
|
671
|
+
def unit_price=(new_unit_price)
|
672
|
+
set_attr("Unit Price", new_unit_price)
|
673
|
+
end
|
674
|
+
|
675
|
+
def unit_price
|
676
|
+
get_attr("Unit Price")
|
677
|
+
end
|
678
|
+
|
679
|
+
def quantity_times_unit_price=(new_quantity_times_unit_price)
|
680
|
+
set_attr("Quantity x Unit Price", new_quantity_times_unit_price)
|
681
|
+
end
|
682
|
+
|
683
|
+
def quantity_times_unit_price
|
684
|
+
get_attr("Quantity x Unit Price")
|
685
|
+
end
|
686
|
+
|
687
|
+
def overhead_fees_and_charges=(new_overhead_fees_and_charges)
|
688
|
+
set_attr("Overhead Fees & Charges", new_overhead_fees_and_charges)
|
689
|
+
end
|
690
|
+
|
691
|
+
def overhead_fees_and_charges
|
692
|
+
get_attr("Overhead Fees & Charges")
|
693
|
+
end
|
694
|
+
|
695
|
+
def total_line_amount_obligated=(new_total_line_amount_obligated)
|
696
|
+
set_attr("Total Line Amount Obligated", new_total_line_amount_obligated)
|
697
|
+
end
|
698
|
+
|
699
|
+
def total_line_amount_obligated
|
700
|
+
get_attr("Total Line Amount Obligated")
|
701
|
+
end
|
702
|
+
|
703
|
+
def advance_line_amount=(new_advance_line_amount)
|
704
|
+
set_attr("Advance Line Amount", new_advance_line_amount)
|
705
|
+
end
|
706
|
+
|
707
|
+
def advance_line_amount
|
708
|
+
get_attr("Advance Line Amount")
|
709
|
+
end
|
710
|
+
|
711
|
+
def net_line_amount_due=(new_net_line_amount_due)
|
712
|
+
set_attr("Net Line Amount Due", new_net_line_amount_due)
|
713
|
+
end
|
714
|
+
|
715
|
+
def net_line_amount_due
|
716
|
+
get_attr("Net Line Amount Due")
|
717
|
+
end
|
718
|
+
|
719
|
+
def contract_cost=(new_contract_cost)
|
720
|
+
set_attr("Contract Cost", new_contract_cost)
|
721
|
+
end
|
722
|
+
|
723
|
+
def contract_cost
|
724
|
+
get_attr("Contract Cost")
|
725
|
+
end
|
726
|
+
|
727
|
+
def servicing_fees=(new_servicing_fees)
|
728
|
+
set_attr("Servicing Fees", new_servicing_fees)
|
729
|
+
end
|
730
|
+
|
731
|
+
def servicing_fees
|
732
|
+
get_attr("Servicing Fees")
|
733
|
+
end
|
734
|
+
|
735
|
+
def total_obligated_cost=(new_total_obligated_cost)
|
736
|
+
set_attr("Total Obligated Cost", new_total_obligated_cost)
|
737
|
+
end
|
738
|
+
|
739
|
+
def total_obligated_cost
|
740
|
+
get_attr("Total Obligated Cost")
|
741
|
+
end
|
742
|
+
|
743
|
+
def advance_for_line=(new_advance_for_line)
|
744
|
+
set_attr("Advance for Line", new_advance_for_line)
|
745
|
+
end
|
746
|
+
|
747
|
+
def advance_for_line
|
748
|
+
get_attr("Advance for Line")
|
749
|
+
end
|
750
|
+
|
751
|
+
def net_total_cost=(new_net_total_cost)
|
752
|
+
set_attr("Net Total Cost", new_net_total_cost)
|
753
|
+
end
|
754
|
+
|
755
|
+
def net_total_cost
|
756
|
+
get_attr("Net Total Cost")
|
757
|
+
end
|
758
|
+
|
759
|
+
def assisted_acquisition_servicing_fees_explanation=(new_assisted_acquisition_servicing_fees_explanation)
|
760
|
+
set_attr("Assisted Acquisition Servicing Fees Explanation", new_assisted_acquisition_servicing_fees_explanation)
|
761
|
+
end
|
762
|
+
|
763
|
+
def assisted_acquisition_servicing_fees_explanation
|
764
|
+
get_attr("Assisted Acquisition Servicing Fees Explanation")
|
765
|
+
end
|
766
|
+
|
767
|
+
def type_of_service_requirements=(new_type_of_service_requirements)
|
768
|
+
set_attr("TYPE OF SERVICE REQUIREMENTS", new_type_of_service_requirements)
|
769
|
+
end
|
770
|
+
|
771
|
+
def type_of_service_requirements
|
772
|
+
get_attr("TYPE OF SERVICE REQUIREMENTS")
|
773
|
+
end
|
774
|
+
|
775
|
+
def total_advance_amount_for_the_order=(new_total_advance_amount_for_the_order)
|
776
|
+
set_attr("Total Advance Amount for the Order", new_total_advance_amount_for_the_order)
|
777
|
+
end
|
778
|
+
|
779
|
+
def total_advance_amount_for_the_order
|
780
|
+
get_attr("Total Advance Amount for the Order")
|
781
|
+
end
|
782
|
+
|
783
|
+
def revenue_recognition_methodology=(new_revenue_recognition_methodology)
|
784
|
+
set_attr("REVENUE RECOGNITION METHODOLOGY", new_revenue_recognition_methodology)
|
785
|
+
end
|
786
|
+
|
787
|
+
def revenue_recognition_methodology
|
788
|
+
get_attr("REVENUE RECOGNITION METHODOLOGY")
|
789
|
+
end
|
790
|
+
|
791
|
+
def amount_to_be_accrued=(new_amount_to_be_accrued)
|
792
|
+
set_attr("Provide amount to be accrued", new_amount_to_be_accrued)
|
793
|
+
end
|
794
|
+
|
795
|
+
def amount_to_be_accrued
|
796
|
+
get_attr("Provide amount to be accrued")
|
797
|
+
end
|
798
|
+
|
799
|
+
def number_of_months=(new_number_of_months)
|
800
|
+
set_attr("Number of Months", new_number_of_months)
|
801
|
+
end
|
802
|
+
|
803
|
+
def number_of_months
|
804
|
+
get_attr("Number of Months")
|
805
|
+
end
|
806
|
+
|
807
|
+
def accrual_per_work=(new_accrual_per_work)
|
808
|
+
set_attr("ACCRUAL PER WORK", new_accrual_per_work)
|
809
|
+
end
|
810
|
+
|
811
|
+
def accrual_per_work
|
812
|
+
get_attr("ACCRUAL PER WORK")
|
813
|
+
end
|
814
|
+
|
815
|
+
def explain_accrual_other=(new_explain_accrual_other)
|
816
|
+
set_attr("Explain - Accrual - OTHER", new_explain_accrual_other)
|
817
|
+
end
|
818
|
+
|
819
|
+
def explain_accrual_other
|
820
|
+
get_attr("Explain - Accrual - OTHER")
|
821
|
+
end
|
822
|
+
|
823
|
+
def total_net_order_amount=(new_total_net_order_amount)
|
824
|
+
set_attr("Total Net Order Amount", new_total_net_order_amount)
|
825
|
+
end
|
826
|
+
|
827
|
+
def total_net_order_amount
|
828
|
+
get_attr("Total Net Order Amount")
|
829
|
+
end
|
830
|
+
|
831
|
+
def has_key_project_and_or_acquisition_milestones_attachments=(new_has_key_project_and_or_acquisition_milestones_attachments)
|
832
|
+
set_attr("Attachments Key project and/or Acquisition Milestones", new_has_key_project_and_or_acquisition_milestones_attachments)
|
833
|
+
end
|
834
|
+
|
835
|
+
def has_key_project_and_or_acquisition_milestones_attachments
|
836
|
+
get_attr("Attachments Key project and/or Acquisition Milestones")
|
837
|
+
end
|
838
|
+
|
839
|
+
def key_project_and_or_acquisition_milestones=(new_key_project_and_or_acquisition_milestones)
|
840
|
+
set_attr("Key project and/or acquisition milestones", new_key_project_and_or_acquisition_milestones)
|
841
|
+
end
|
842
|
+
|
843
|
+
def key_project_and_or_acquisition_milestones
|
844
|
+
get_attr("Key project and/or acquisition milestones")
|
845
|
+
end
|
846
|
+
|
847
|
+
def has_other_attachments=(new_has_other_attachments)
|
848
|
+
set_attr("Attachments Other attachments", new_has_other_attachments)
|
849
|
+
end
|
850
|
+
|
851
|
+
def has_other_attachments
|
852
|
+
get_attr("Attachments Other attachments")
|
853
|
+
end
|
854
|
+
|
855
|
+
def other_attachments=(new_other_attachments)
|
856
|
+
set_attr("Other attachments (Optional)", new_other_attachments)
|
857
|
+
end
|
858
|
+
|
859
|
+
def other_attachments
|
860
|
+
get_attr("Other attachments (Optional)")
|
861
|
+
end
|
862
|
+
|
863
|
+
def payment_method=(new_payment_method)
|
864
|
+
set_attr("PAYMENT METHOD", new_payment_method)
|
865
|
+
end
|
866
|
+
|
867
|
+
def payment_method
|
868
|
+
get_attr("PAYMENT METHOD")
|
869
|
+
end
|
870
|
+
|
871
|
+
def explain_other_payment_method=(new_explain_other_payment_method)
|
872
|
+
set_attr("Explain other payment method and reasoning", new_explain_other_payment_method)
|
873
|
+
end
|
874
|
+
|
875
|
+
def explain_other_payment_method
|
876
|
+
get_attr("Explain other payment method and reasoning")
|
877
|
+
end
|
878
|
+
|
879
|
+
def billing_frequency=(new_billing_frequency)
|
880
|
+
set_attr("BILLING FREQUENCY", new_billing_frequency)
|
881
|
+
end
|
882
|
+
|
883
|
+
def billing_frequency
|
884
|
+
get_attr("BILLING FREQUENCY")
|
885
|
+
end
|
886
|
+
|
887
|
+
def other_billing_frequency_explanation=(new_other_billing_frequency_explanation)
|
888
|
+
set_attr("OTHER BILLING FREQUENCY EXPLANATION", new_other_billing_frequency_explanation)
|
889
|
+
end
|
890
|
+
|
891
|
+
def other_billing_frequency_explanation
|
892
|
+
get_attr("OTHER BILLING FREQUENCY EXPLANATION")
|
893
|
+
end
|
894
|
+
|
895
|
+
def payment_terms=(new_payment_terms)
|
896
|
+
set_attr("PAYMENT TERMS", new_payment_terms)
|
897
|
+
end
|
898
|
+
|
899
|
+
def payment_terms
|
900
|
+
get_attr("PAYMENT TERMS")
|
901
|
+
end
|
902
|
+
|
903
|
+
def other_payment_terms=(new_other_payment_terms)
|
904
|
+
set_attr("Other Payment Terms include explanation", new_other_payment_terms)
|
905
|
+
end
|
906
|
+
|
907
|
+
def other_payment_terms
|
908
|
+
get_attr("Other Payment Terms include explanation")
|
909
|
+
end
|
910
|
+
|
911
|
+
def funding_clauses=(new_funding_clauses)
|
912
|
+
set_attr("Funding Clauses Instructions Optional State and or list funding clauses instructions", new_funding_clauses)
|
913
|
+
end
|
914
|
+
|
915
|
+
def funding_clauses
|
916
|
+
get_attr("Funding Clauses Instructions Optional State and or list funding clauses instructions")
|
917
|
+
end
|
918
|
+
|
919
|
+
def agency_name=(new_agency_name)
|
920
|
+
set_attr("Agency Name", new_agency_name)
|
921
|
+
end
|
922
|
+
|
923
|
+
def agency_name
|
924
|
+
get_attr("Agency Name")
|
925
|
+
end
|
926
|
+
|
927
|
+
def point_of_contact=(new_point_of_contact)
|
928
|
+
set_attr("Point of Contact POC Name Title", new_point_of_contact)
|
929
|
+
end
|
930
|
+
|
931
|
+
def point_of_contact
|
932
|
+
get_attr("Point of Contact POC Name Title")
|
933
|
+
end
|
934
|
+
|
935
|
+
def point_of_contact_email=(new_point_of_contact_email)
|
936
|
+
set_attr("POC Email Address", new_point_of_contact_email)
|
937
|
+
end
|
938
|
+
|
939
|
+
def point_of_contact_email
|
940
|
+
get_attr("POC Email Address")
|
941
|
+
end
|
942
|
+
|
943
|
+
def delivery_address_room_number=(new_delivery_address_room_number)
|
944
|
+
set_attr("Delivery Address Room Number", new_delivery_address_room_number)
|
945
|
+
end
|
946
|
+
|
947
|
+
def delivery_address_room_number
|
948
|
+
get_attr("Delivery Address Room Number")
|
949
|
+
end
|
950
|
+
|
951
|
+
def point_of_contact_telephone_number=(new_point_of_contact_telephone_number)
|
952
|
+
set_attr("POC Telephone Number", new_point_of_contact_telephone_number)
|
953
|
+
end
|
954
|
+
|
955
|
+
def point_of_contact_telephone_number
|
956
|
+
get_attr("POC Telephone Number")
|
957
|
+
end
|
958
|
+
|
959
|
+
def special_shipping_information=(new_special_shipping_information)
|
960
|
+
set_attr("Special Shipping Information", new_special_shipping_information)
|
961
|
+
end
|
962
|
+
|
963
|
+
def special_shipping_information
|
964
|
+
get_attr("Special Shipping Information")
|
965
|
+
end
|
966
|
+
|
967
|
+
def program_officials_requesting_agency_name=(new_program_officials_requesting_agency_name)
|
968
|
+
set_attr("Program Officials Requesting Agency Name", new_program_officials_requesting_agency_name)
|
969
|
+
end
|
970
|
+
|
971
|
+
def program_officials_requesting_agency_name
|
972
|
+
get_attr("Program Officials Requesting Agency Name")
|
973
|
+
end
|
974
|
+
|
975
|
+
def program_officials_requesting_agency_title=(new_program_officials_requesting_agency_title)
|
976
|
+
set_attr("Program Officials Requesting Agency Title", new_program_officials_requesting_agency_title)
|
977
|
+
end
|
978
|
+
|
979
|
+
def program_officials_requesting_agency_title
|
980
|
+
get_attr("Program Officials Requesting Agency Title")
|
981
|
+
end
|
982
|
+
|
983
|
+
def program_officials_requesting_agency_telephone_number=(new_program_officials_requesting_agency_telephone_number)
|
984
|
+
set_attr("Program Officials Requesting AgencyTelephone Number", new_program_officials_requesting_agency_telephone_number)
|
985
|
+
end
|
986
|
+
|
987
|
+
def program_officials_requesting_agency_telephone_number
|
988
|
+
get_attr("Program Officials Requesting AgencyTelephone Number")
|
989
|
+
end
|
990
|
+
|
991
|
+
def program_officials_requesting_agency_fax_number=(new_program_officials_requesting_agency_fax_number)
|
992
|
+
set_attr("Program Officials Requesting Agency Fax Number", new_program_officials_requesting_agency_fax_number)
|
993
|
+
end
|
994
|
+
|
995
|
+
def program_officials_requesting_agency_fax_number
|
996
|
+
get_attr("Program Officials Requesting Agency Fax Number")
|
997
|
+
end
|
998
|
+
|
999
|
+
def program_officials_requesting_agency_email_address=(new_program_officials_requesting_agency_email_address)
|
1000
|
+
set_attr("Program Officials Requesting Agency Email Address", new_program_officials_requesting_agency_email_address)
|
1001
|
+
end
|
1002
|
+
|
1003
|
+
def program_officials_requesting_agency_email_address
|
1004
|
+
get_attr("Program Officials Requesting Agency Email Address")
|
1005
|
+
end
|
1006
|
+
|
1007
|
+
def program_officials_requesting_agency_date_signes=(new_program_officials_requesting_agency_date_signes)
|
1008
|
+
set_attr("Program Officials Requesting Agency Date Signed", new_program_officials_requesting_agency_date_signes)
|
1009
|
+
end
|
1010
|
+
|
1011
|
+
def program_officials_requesting_agency_date_signes
|
1012
|
+
get_attr("Program Officials Requesting Agency Date Signed")
|
1013
|
+
end
|
1014
|
+
|
1015
|
+
def program_officials_servicing_agency_name=(new_program_officials_servicing_agency_name)
|
1016
|
+
set_attr("Program Officials Servicing Agency Name", new_program_officials_servicing_agency_name)
|
1017
|
+
end
|
1018
|
+
|
1019
|
+
def program_officials_servicing_agency_name
|
1020
|
+
get_attr("Program Officials Servicing Agency Name")
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
def program_officials_servicing_agency_title=(new_program_officials_servicing_agency_title)
|
1024
|
+
set_attr("Program Officials Servicing Agency Title", new_program_officials_servicing_agency_title)
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
def program_officials_servicing_agency_title
|
1028
|
+
get_attr("Program Officials Servicing Agency Title")
|
1029
|
+
end
|
1030
|
+
|
1031
|
+
def program_officials_servicing_agency_telephone_number=(new_program_officials_servicing_agency_telephone_number)
|
1032
|
+
set_attr("Program Officials Servicing AgencyTelephone Number", new_program_officials_servicing_agency_telephone_number)
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
def program_officials_servicing_agency_telephone_number
|
1036
|
+
get_attr("Program Officials Servicing AgencyTelephone Number")
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
def program_officials_servicing_agency_fax_number=(new_program_officials_servicing_agency_fax_number)
|
1040
|
+
set_attr("Program Officials Servicing Agency Fax Number", new_program_officials_servicing_agency_fax_number)
|
1041
|
+
end
|
1042
|
+
|
1043
|
+
def program_officials_servicing_agency_fax_number
|
1044
|
+
get_attr("Program Officials Servicing Agency Fax Number")
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
def program_officials_servicing_agency_email_address=(new_program_officials_servicing_agency_email_address)
|
1048
|
+
set_attr("Program Officials Servicing Agency Email Address", new_program_officials_servicing_agency_email_address)
|
1049
|
+
end
|
1050
|
+
|
1051
|
+
def program_officials_servicing_agency_email_address
|
1052
|
+
get_attr("Program Officials Servicing Agency Email Address")
|
1053
|
+
end
|
1054
|
+
|
1055
|
+
def program_officials_servicing_agency_date_signed=(new_program_officials_servicing_agency_date_signed)
|
1056
|
+
set_attr("Program Officials Servicing Agency Date Signed", new_program_officials_servicing_agency_date_signed)
|
1057
|
+
end
|
1058
|
+
|
1059
|
+
def program_officials_servicing_agency_date_signed
|
1060
|
+
get_attr("Program Officials Servicing Agency Date Signed")
|
1061
|
+
end
|
1062
|
+
|
1063
|
+
def funding_officials_requesting_agency_name=(new_funding_officials_requesting_agency_name)
|
1064
|
+
set_attr("Funding Officials Requesting Agency Name", new_funding_officials_requesting_agency_name)
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
def funding_officials_requesting_agency_name
|
1068
|
+
get_attr("Funding Officials Requesting Agency Name")
|
1069
|
+
end
|
1070
|
+
|
1071
|
+
def funding_officials_requesting_agency_title=(new_funding_officials_requesting_agency_title)
|
1072
|
+
set_attr("Funding Officials Requesting AgencyTitle", new_funding_officials_requesting_agency_title)
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
def funding_officials_requesting_agency_title
|
1076
|
+
get_attr("Funding Officials Requesting AgencyTitle")
|
1077
|
+
end
|
1078
|
+
|
1079
|
+
def funding_officials_requesting_agency_telephone_number=(new_funding_officials_requesting_agency_telephone_number)
|
1080
|
+
set_attr("Funding Officials Requesting Agency Telephone Number", new_funding_officials_requesting_agency_telephone_number)
|
1081
|
+
end
|
1082
|
+
|
1083
|
+
def funding_officials_requesting_agency_telephone_number
|
1084
|
+
get_attr("Funding Officials Requesting Agency Telephone Number")
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
def funding_officials_requesting_agency_fax_number=(new_funding_officials_requesting_agency_fax_number)
|
1088
|
+
set_attr("Funding Officials Requesting Agency Fax Number", new_funding_officials_requesting_agency_fax_number)
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
def funding_officials_requesting_agency_fax_number
|
1092
|
+
get_attr("Funding Officials Requesting Agency Fax Number")
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
def funding_officials_requesting_agency_email_address=(new_funding_officials_requesting_agency_email_address)
|
1096
|
+
set_attr("Funding Officials Requesting Agency Email Address", new_funding_officials_requesting_agency_email_address)
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
def funding_officials_requesting_agency_email_address
|
1100
|
+
get_attr("Funding Officials Requesting Agency Email Address")
|
1101
|
+
end
|
1102
|
+
|
1103
|
+
def funding_officials_requesting_agency_date_signed=(new_funding_officials_requesting_agency_date_signed)
|
1104
|
+
set_attr("Funding Officials Requesting Agency Date Signed", new_funding_officials_requesting_agency_date_signed)
|
1105
|
+
end
|
1106
|
+
|
1107
|
+
def funding_officials_requesting_agency_date_signed
|
1108
|
+
get_attr("Funding Officials Requesting Agency Date Signed")
|
1109
|
+
end
|
1110
|
+
|
1111
|
+
def funding_officials_servicing_agency_name=(new_funding_officials_servicing_agency_name)
|
1112
|
+
set_attr("Funding Officials Servicing Agency Name", new_funding_officials_servicing_agency_name)
|
1113
|
+
end
|
1114
|
+
|
1115
|
+
def funding_officials_servicing_agency_name
|
1116
|
+
get_attr("Funding Officials Servicing Agency Name")
|
1117
|
+
end
|
1118
|
+
|
1119
|
+
def funding_officials_servicing_agency_title=(new_funding_officials_servicing_agency_title)
|
1120
|
+
set_attr("Funding Officials Servicing Agency Title", new_funding_officials_servicing_agency_title)
|
1121
|
+
end
|
1122
|
+
|
1123
|
+
def funding_officials_servicing_agency_title
|
1124
|
+
get_attr("Funding Officials Servicing Agency Title")
|
1125
|
+
end
|
1126
|
+
|
1127
|
+
def funding_officials_servicing_agency_telephone_number=(new_funding_officials_servicing_agency_telephone_number)
|
1128
|
+
set_attr("Funding Officials Servicing Agency Telephone Number", new_funding_officials_servicing_agency_telephone_number)
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
def funding_officials_servicing_agency_telephone_number
|
1132
|
+
get_attr("Funding Officials Servicing Agency Telephone Number")
|
1133
|
+
end
|
1134
|
+
|
1135
|
+
def funding_officials_servicing_agency_fax_number=(new_funding_officials_servicing_agency_fax_number)
|
1136
|
+
set_attr("Funding Officials Servicing Agency Fax Number", new_funding_officials_servicing_agency_fax_number)
|
1137
|
+
end
|
1138
|
+
|
1139
|
+
def funding_officials_servicing_agency_fax_number
|
1140
|
+
get_attr("Funding Officials Servicing Agency Fax Number")
|
1141
|
+
end
|
1142
|
+
|
1143
|
+
def funding_officials_servicing_agency_email_address=(new_funding_officials_servicing_agency_email_address)
|
1144
|
+
set_attr("Funding Officials Servicing Agency Email Address", new_funding_officials_servicing_agency_email_address)
|
1145
|
+
end
|
1146
|
+
|
1147
|
+
def funding_officials_servicing_agency_email_address
|
1148
|
+
get_attr("Funding Officials Servicing Agency Email Address")
|
1149
|
+
end
|
1150
|
+
|
1151
|
+
def funding_officials_servicing_agency_date_signed=(new_funding_officials_servicing_agency_date_signed)
|
1152
|
+
set_attr("Funding Officials Servicing Agency Date Signed", new_funding_officials_servicing_agency_date_signed)
|
1153
|
+
end
|
1154
|
+
|
1155
|
+
def funding_officials_servicing_agency_date_signed
|
1156
|
+
get_attr("Funding Officials Servicing Agency Date Signed")
|
1157
|
+
end
|
1158
|
+
|
1159
|
+
def point_of_contact_requesting_agency_name=(new_point_of_contact_requesting_agency_name)
|
1160
|
+
set_attr("POC REQUESTING AGENCY NAME", new_point_of_contact_requesting_agency_name)
|
1161
|
+
end
|
1162
|
+
|
1163
|
+
def point_of_contact_requesting_agency_name
|
1164
|
+
get_attr("POC REQUESTING AGENCY NAME")
|
1165
|
+
end
|
1166
|
+
|
1167
|
+
def point_of_contact_requesting_agency_title=(new_point_of_contact_requesting_agency_title)
|
1168
|
+
set_attr("POC REQUESTING AGENCY TITLE", new_point_of_contact_requesting_agency_title)
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
def point_of_contact_requesting_agency_title
|
1172
|
+
get_attr("POC REQUESTING AGENCY TITLE")
|
1173
|
+
end
|
1174
|
+
|
1175
|
+
def point_of_contact_requesting_agency_office_address=(new_point_of_contact_requesting_agency_office_address)
|
1176
|
+
set_attr("POC REQUESTING AGENCY OFFICE ADDRESS", new_point_of_contact_requesting_agency_office_address)
|
1177
|
+
end
|
1178
|
+
|
1179
|
+
def point_of_contact_requesting_agency_office_address
|
1180
|
+
get_attr("POC REQUESTING AGENCY OFFICE ADDRESS")
|
1181
|
+
end
|
1182
|
+
|
1183
|
+
def point_of_contact_requesting_agency_telephone_number=(new_point_of_contact_requesting_agency_telephone_number)
|
1184
|
+
set_attr("POC REQUESTING AGENCY TELEPHONE NUMBER", new_point_of_contact_requesting_agency_telephone_number)
|
1185
|
+
end
|
1186
|
+
|
1187
|
+
def point_of_contact_requesting_agency_telephone_number
|
1188
|
+
get_attr("POC REQUESTING AGENCY TELEPHONE NUMBER")
|
1189
|
+
end
|
1190
|
+
|
1191
|
+
def requesting_agency_payment_office_fax_number=(new_requesting_agency_payment_office_fax_number)
|
1192
|
+
set_attr("Requesting Agency Payment OfficeFax Number", new_requesting_agency_payment_office_fax_number)
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
def requesting_agency_payment_office_fax_number
|
1196
|
+
get_attr("Requesting Agency Payment OfficeFax Number")
|
1197
|
+
end
|
1198
|
+
|
1199
|
+
def requesting_agency_payment_office_email_address=(new_requesting_agency_payment_office_email_address)
|
1200
|
+
set_attr("Requesting Agency Payment OfficeEmail Address", new_requesting_agency_payment_office_email_address)
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
def requesting_agency_payment_office_email_address
|
1204
|
+
get_attr("Requesting Agency Payment OfficeEmail Address")
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
def requesting_agency_payment_office_date=(new_requesting_agency_payment_office_date)
|
1208
|
+
set_attr("Requesting Agency Payment Office Date", new_requesting_agency_payment_office_date)
|
1209
|
+
end
|
1210
|
+
|
1211
|
+
def requesting_agency_payment_office_date
|
1212
|
+
get_attr("Requesting Agency Payment Office Date")
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
def point_of_contact_servicing_agency_name=(new_point_of_contact_servicing_agency_name)
|
1216
|
+
set_attr("POC Servicing Agency Name", new_point_of_contact_servicing_agency_name)
|
1217
|
+
end
|
1218
|
+
|
1219
|
+
def point_of_contact_servicing_agency_name
|
1220
|
+
get_attr("POC Servicing Agency Name")
|
1221
|
+
end
|
1222
|
+
|
1223
|
+
def point_of_contact_servicing_agency_title=(new_point_of_contact_servicing_agency_title)
|
1224
|
+
set_attr("POC Servicing Agency Title", new_point_of_contact_servicing_agency_title)
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
def point_of_contact_servicing_agency_title
|
1228
|
+
get_attr("POC Servicing Agency Title")
|
1229
|
+
end
|
1230
|
+
|
1231
|
+
def point_of_contact_servicing_agency_office_address=(new_point_of_contact_servicing_agency_office_address)
|
1232
|
+
set_attr("POC Servicing Agency Office Address", new_point_of_contact_servicing_agency_office_address)
|
1233
|
+
end
|
1234
|
+
|
1235
|
+
def point_of_contact_servicing_agency_office_address
|
1236
|
+
get_attr("POC Servicing Agency Office Address")
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
def point_of_contact_servicing_agency_telephone_number=(new_point_of_contact_servicing_agency_telephone_number)
|
1240
|
+
set_attr("POC Servicing Agency Telephone Number", new_point_of_contact_servicing_agency_telephone_number)
|
1241
|
+
end
|
1242
|
+
|
1243
|
+
def point_of_contact_servicing_agency_telephone_number
|
1244
|
+
get_attr("POC Servicing Agency Telephone Number")
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
def point_of_contact_servicing_agency_fax_number=(new_point_of_contact_servicing_agency_fax_number)
|
1248
|
+
set_attr("POC Servicing Agency Fax Number", new_point_of_contact_servicing_agency_fax_number)
|
1249
|
+
end
|
1250
|
+
|
1251
|
+
def point_of_contact_servicing_agency_fax_number
|
1252
|
+
get_attr("POC Servicing Agency Fax Number")
|
1253
|
+
end
|
1254
|
+
|
1255
|
+
def point_of_contact_servicing_agency_email_address=(new_point_of_contact_servicing_agency_email_address)
|
1256
|
+
set_attr("POC Servicing Agency Email Address", new_point_of_contact_servicing_agency_email_address)
|
1257
|
+
end
|
1258
|
+
|
1259
|
+
def point_of_contact_servicing_agency_email_address
|
1260
|
+
get_attr("POC Servicing Agency Email Address")
|
1261
|
+
end
|
1262
|
+
|
1263
|
+
def point_of_contact_servicing_agency_date=(new_point_of_contact_servicing_agency_date)
|
1264
|
+
set_attr("POC Servicing Agency Date", new_point_of_contact_servicing_agency_date)
|
1265
|
+
end
|
1266
|
+
|
1267
|
+
def point_of_contact_servicing_agency_date
|
1268
|
+
get_attr("POC Servicing Agency Date")
|
1269
|
+
end
|
1270
|
+
|
1271
|
+
def additional_point_of_contact_requesting_agency_name=(new_additional_point_of_contact_requesting_agency_name)
|
1272
|
+
set_attr("Additional POC Requesting Agency Name", new_additional_point_of_contact_requesting_agency_name)
|
1273
|
+
end
|
1274
|
+
|
1275
|
+
def additional_point_of_contact_requesting_agency_name
|
1276
|
+
get_attr("Additional POC Requesting Agency Name")
|
1277
|
+
end
|
1278
|
+
|
1279
|
+
def additional_point_of_contact_requesting_agency_title=(new_additional_point_of_contact_requesting_agency_title)
|
1280
|
+
set_attr("Additional POC Requesting Agency Title", new_additional_point_of_contact_requesting_agency_title)
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
def additional_point_of_contact_requesting_agency_title
|
1284
|
+
get_attr("Additional POC Requesting Agency Title")
|
1285
|
+
end
|
1286
|
+
|
1287
|
+
def additional_point_of_contact_requesting_agency_address=(new_additional_point_of_contact_requesting_agency_address)
|
1288
|
+
set_attr("Additional POC Requesting Agency Office Address", new_additional_point_of_contact_requesting_agency_address)
|
1289
|
+
end
|
1290
|
+
|
1291
|
+
def additional_point_of_contact_requesting_agency_address
|
1292
|
+
get_attr("Additional POC Requesting Agency Office Address")
|
1293
|
+
end
|
1294
|
+
|
1295
|
+
def additional_point_of_contact_requesting_agency_telephone_number=(new_additional_point_of_contact_requesting_agency_telephone_number)
|
1296
|
+
set_attr("Additional POC Requesting Agency Telephone Number", new_additional_point_of_contact_requesting_agency_telephone_number)
|
1297
|
+
end
|
1298
|
+
|
1299
|
+
def additional_point_of_contact_requesting_agency_telephone_number
|
1300
|
+
get_attr("Additional POC Requesting Agency Telephone Number")
|
1301
|
+
end
|
1302
|
+
|
1303
|
+
def additional_point_of_contact_requesting_agency_fax_number=(new_additional_point_of_contact_requesting_agency_fax_number)
|
1304
|
+
set_attr("Additional POC Requesting Agency Fax Number", new_additional_point_of_contact_requesting_agency_fax_number)
|
1305
|
+
end
|
1306
|
+
|
1307
|
+
def additional_point_of_contact_requesting_agency_fax_number
|
1308
|
+
get_attr("Additional POC Requesting Agency Fax Number")
|
1309
|
+
end
|
1310
|
+
|
1311
|
+
def additional_point_of_contact_requesting_agency_email_address=(new_additional_point_of_contact_requesting_agency_email_address)
|
1312
|
+
set_attr("Additional POC Requesting Agency Email Address", new_additional_point_of_contact_requesting_agency_email_address)
|
1313
|
+
end
|
1314
|
+
|
1315
|
+
def additional_point_of_contact_requesting_agency_email_address
|
1316
|
+
get_attr("Additional POC Requesting Agency Email Address")
|
1317
|
+
end
|
1318
|
+
|
1319
|
+
def additional_point_of_contact_requesting_agency_date=(new_additional_point_of_contact_requesting_agency_date)
|
1320
|
+
set_attr("Additional POC Requesting Agency Date", new_additional_point_of_contact_requesting_agency_date)
|
1321
|
+
end
|
1322
|
+
|
1323
|
+
def additional_point_of_contact_requesting_agency_date
|
1324
|
+
get_attr("Additional POC Requesting Agency Date")
|
1325
|
+
end
|
1326
|
+
|
1327
|
+
def additional_point_of_contact_servicing_agency_name=(new_additional_point_of_contact_servicing_agency_name)
|
1328
|
+
set_attr("Additional POC Servicing Agency Name", new_additional_point_of_contact_servicing_agency_name)
|
1329
|
+
end
|
1330
|
+
|
1331
|
+
def additional_point_of_contact_servicing_agency_name
|
1332
|
+
get_attr("Additional POC Servicing Agency Name")
|
1333
|
+
end
|
1334
|
+
|
1335
|
+
def additional_point_of_contact_servicing_agency_title=(new_additional_point_of_contact_servicing_agency_title)
|
1336
|
+
set_attr("Additional POC Servicing Agency Title", new_additional_point_of_contact_servicing_agency_title)
|
1337
|
+
end
|
1338
|
+
|
1339
|
+
def additional_point_of_contact_servicing_agency_title
|
1340
|
+
get_attr("Additional POC Servicing Agency Title")
|
1341
|
+
end
|
1342
|
+
|
1343
|
+
def additional_point_of_contact_servicing_agency_office_address=(new_additional_point_of_contact_servicing_agency_office_address)
|
1344
|
+
set_attr("Additional POC Servicing Agency Office Address", new_additional_point_of_contact_servicing_agency_office_address)
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
def additional_point_of_contact_servicing_agency_office_address
|
1348
|
+
get_attr("Additional POC Servicing Agency Office Address")
|
1349
|
+
end
|
1350
|
+
|
1351
|
+
def additional_point_of_contact_servicing_agency_telephone_number=(new_additional_point_of_contact_servicing_agency_telephone_number)
|
1352
|
+
set_attr("Additional POC Servicing Agency Telephone Number", new_additional_point_of_contact_servicing_agency_telephone_number)
|
1353
|
+
end
|
1354
|
+
|
1355
|
+
def additional_point_of_contact_servicing_agency_telephone_number
|
1356
|
+
get_attr("Additional POC Servicing Agency Telephone Number")
|
1357
|
+
end
|
1358
|
+
|
1359
|
+
def additional_point_of_contact_servicing_agency_fax_number=(new_additional_point_of_contact_servicing_agency_fax_number)
|
1360
|
+
set_attr("Additional POC Servicing Agency Fax Number", new_additional_point_of_contact_servicing_agency_fax_number)
|
1361
|
+
end
|
1362
|
+
|
1363
|
+
def additional_point_of_contact_servicing_agency_fax_number
|
1364
|
+
get_attr("Additional POC Servicing Agency Fax Number")
|
1365
|
+
end
|
1366
|
+
|
1367
|
+
def additional_point_of_contact_servicing_agency_email_address=(new_additional_point_of_contact_servicing_agency_email_address)
|
1368
|
+
set_attr("Additional POC Servicing Agency Email Address", new_additional_point_of_contact_servicing_agency_email_address)
|
1369
|
+
end
|
1370
|
+
|
1371
|
+
def additional_point_of_contact_servicing_agency_email_address
|
1372
|
+
get_attr("Additional POC Servicing Agency Email Address")
|
1373
|
+
end
|
1374
|
+
|
1375
|
+
def additional_point_of_contact_servicing_agency_date=(new_additional_point_of_contact_servicing_agency_date)
|
1376
|
+
set_attr("Additional POC Servicing Agency Date", new_additional_point_of_contact_servicing_agency_date)
|
1377
|
+
end
|
1378
|
+
|
1379
|
+
def additional_point_of_contact_servicing_agency_date
|
1380
|
+
get_attr("Additional POC Servicing Agency Date")
|
1381
|
+
end
|
1382
|
+
|
1383
|
+
def additional_point_of_contact_requesting_agency_name2=(new_additional_point_of_contact_requesting_agency_name2)
|
1384
|
+
set_attr("Additional POC Requesting Agency Name1", new_additional_point_of_contact_requesting_agency_name2)
|
1385
|
+
end
|
1386
|
+
|
1387
|
+
def additional_point_of_contact_requesting_agency_name2
|
1388
|
+
get_attr("Additional POC Requesting Agency Name1")
|
1389
|
+
end
|
1390
|
+
|
1391
|
+
def additional_point_of_contact_requesting_agency_title1=(new_additional_point_of_contact_requesting_agency_title1)
|
1392
|
+
set_attr("Additional POC Requesting Agency Title1", new_additional_point_of_contact_requesting_agency_title1)
|
1393
|
+
end
|
1394
|
+
|
1395
|
+
def additional_point_of_contact_requesting_agency_title1
|
1396
|
+
get_attr("Additional POC Requesting Agency Title1")
|
1397
|
+
end
|
1398
|
+
|
1399
|
+
def additional_point_of_contact_requesting_agency_address1=(new_additional_point_of_contact_requesting_agency_address1)
|
1400
|
+
set_attr("Additional POC Requesting Agency Office Address1", new_additional_point_of_contact_requesting_agency_address1)
|
1401
|
+
end
|
1402
|
+
|
1403
|
+
def additional_point_of_contact_requesting_agency_address1
|
1404
|
+
get_attr("Additional POC Requesting Agency Office Address1")
|
1405
|
+
end
|
1406
|
+
|
1407
|
+
def additional_point_of_contact_requesting_agency_telephone_number1=(new_additional_point_of_contact_requesting_agency_telephone_number1)
|
1408
|
+
set_attr("Additional POC Requesting Agency Telephone Number1", new_additional_point_of_contact_requesting_agency_telephone_number1)
|
1409
|
+
end
|
1410
|
+
|
1411
|
+
def additional_point_of_contact_requesting_agency_telephone_number1
|
1412
|
+
get_attr("Additional POC Requesting Agency Telephone Number1")
|
1413
|
+
end
|
1414
|
+
|
1415
|
+
def additional_point_of_contact_requesting_agency_fax_number1=(new_additional_point_of_contact_requesting_agency_fax_number1)
|
1416
|
+
set_attr("Additional POC Requesting Agency Fax Number1", new_additional_point_of_contact_requesting_agency_fax_number1)
|
1417
|
+
end
|
1418
|
+
|
1419
|
+
def additional_point_of_contact_requesting_agency_fax_number1
|
1420
|
+
get_attr("Additional POC Requesting Agency Fax Number1")
|
1421
|
+
end
|
1422
|
+
|
1423
|
+
def additional_point_of_contact_requesting_agency_email_address1=(new_additional_point_of_contact_requesting_agency_email_address1)
|
1424
|
+
set_attr("Additional POC Requesting Agency Email Address1", new_additional_point_of_contact_requesting_agency_email_address1)
|
1425
|
+
end
|
1426
|
+
|
1427
|
+
def additional_point_of_contact_requesting_agency_email_address1
|
1428
|
+
get_attr("Additional POC Requesting Agency Email Address1")
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
def additional_point_of_contact_requesting_agency_date1=(new_additional_point_of_contact_requesting_agency_date1)
|
1432
|
+
set_attr("Additional POC Requesting Agency Date1", new_additional_point_of_contact_requesting_agency_date1)
|
1433
|
+
end
|
1434
|
+
|
1435
|
+
def additional_point_of_contact_requesting_agency_date1
|
1436
|
+
get_attr("Additional POC Requesting Agency Date1")
|
1437
|
+
end
|
1438
|
+
|
1439
|
+
def additional_point_of_contact_servicing_agency_name1=(new_additional_point_of_contact_servicing_agency_name1)
|
1440
|
+
set_attr("Additional POC Servicing Agency Name1", new_additional_point_of_contact_servicing_agency_name1)
|
1441
|
+
end
|
1442
|
+
|
1443
|
+
def additional_point_of_contact_servicing_agency_name1
|
1444
|
+
get_attr("Additional POC Servicing Agency Name1")
|
1445
|
+
end
|
1446
|
+
|
1447
|
+
def additional_point_of_contact_servicing_agency_title1=(new_additional_point_of_contact_servicing_agency_title1)
|
1448
|
+
set_attr("Additional POC Servicing Agency Title1", new_additional_point_of_contact_servicing_agency_title1)
|
1449
|
+
end
|
1450
|
+
|
1451
|
+
def additional_point_of_contact_servicing_agency_title1
|
1452
|
+
get_attr("Additional POC Servicing Agency Title1")
|
1453
|
+
end
|
1454
|
+
|
1455
|
+
def additional_point_of_contact_servicing_agency_office_address1=(new_additional_point_of_contact_servicing_agency_office_address1)
|
1456
|
+
set_attr("Additional POC Servicing Agency Office Address1", new_additional_point_of_contact_servicing_agency_office_address1)
|
1457
|
+
end
|
1458
|
+
|
1459
|
+
def additional_point_of_contact_servicing_agency_office_address1
|
1460
|
+
get_attr("Additional POC Servicing Agency Office Address1")
|
1461
|
+
end
|
1462
|
+
|
1463
|
+
def additional_point_of_contact_servicing_agency_telephone_number1=(new_additional_point_of_contact_servicing_agency_telephone_number1)
|
1464
|
+
set_attr("Additional POC Servicing Agency Telephone Number1", new_additional_point_of_contact_servicing_agency_telephone_number1)
|
1465
|
+
end
|
1466
|
+
|
1467
|
+
def additional_point_of_contact_servicing_agency_telephone_number1
|
1468
|
+
get_attr("Additional POC Servicing Agency Telephone Number1")
|
1469
|
+
end
|
1470
|
+
|
1471
|
+
def additional_point_of_contact_servicing_agency_fax_number1=(new_additional_point_of_contact_servicing_agency_fax_number1)
|
1472
|
+
set_attr("Additional POC Servicing Agency Fax Number1", new_additional_point_of_contact_servicing_agency_fax_number1)
|
1473
|
+
end
|
1474
|
+
|
1475
|
+
def additional_point_of_contact_servicing_agency_fax_number1
|
1476
|
+
get_attr("Additional POC Servicing Agency Fax Number1")
|
1477
|
+
end
|
1478
|
+
|
1479
|
+
def additional_point_of_contact_servicing_agency_email_address1=(new_additional_point_of_contact_servicing_agency_email_address1)
|
1480
|
+
set_attr("Additional POC Servicing Agency Email Address1", new_additional_point_of_contact_servicing_agency_email_address1)
|
1481
|
+
end
|
1482
|
+
|
1483
|
+
def additional_point_of_contact_servicing_agency_email_address1
|
1484
|
+
get_attr("Additional POC Servicing Agency Email Address1")
|
1485
|
+
end
|
1486
|
+
|
1487
|
+
def additional_point_of_contact_servicing_agency_date1=(new_additional_point_of_contact_servicing_agency_date1)
|
1488
|
+
set_attr("Additional POC Servicing Agency Date1", new_additional_point_of_contact_servicing_agency_date1)
|
1489
|
+
end
|
1490
|
+
|
1491
|
+
def additional_point_of_contact_servicing_agency_date1
|
1492
|
+
get_attr("Additional POC Servicing Agency Date1")
|
1493
|
+
end
|
1494
|
+
|
1495
|
+
def additional_point_of_contact_requesting_agency_name2=(new_additional_point_of_contact_requesting_agency_name2)
|
1496
|
+
set_attr("Additional POC Requesting Agency Name2", new_additional_point_of_contact_requesting_agency_name2)
|
1497
|
+
end
|
1498
|
+
|
1499
|
+
def additional_point_of_contact_requesting_agency_name2
|
1500
|
+
get_attr("Additional POC Requesting Agency Name2")
|
1501
|
+
end
|
1502
|
+
|
1503
|
+
def additional_point_of_contact_requesting_agency_title2=(new_additional_point_of_contact_requesting_agency_title2)
|
1504
|
+
set_attr("Additional POC Requesting Agency Title2", new_additional_point_of_contact_requesting_agency_title2)
|
1505
|
+
end
|
1506
|
+
|
1507
|
+
def additional_point_of_contact_requesting_agency_title2
|
1508
|
+
get_attr("Additional POC Requesting Agency Title2")
|
1509
|
+
end
|
1510
|
+
|
1511
|
+
def additional_point_of_contact_requesting_agency_address2=(new_additional_point_of_contact_requesting_agency_address2)
|
1512
|
+
set_attr("Additional POC Requesting Agency Office Address2", new_additional_point_of_contact_requesting_agency_address2)
|
1513
|
+
end
|
1514
|
+
|
1515
|
+
def additional_point_of_contact_requesting_agency_address2
|
1516
|
+
get_attr("Additional POC Requesting Agency Office Address2")
|
1517
|
+
end
|
1518
|
+
|
1519
|
+
def additional_point_of_contact_requesting_agency_telephone_number2=(new_additional_point_of_contact_requesting_agency_telephone_number2)
|
1520
|
+
set_attr("Additional POC Requesting Agency Telephone Number2", new_additional_point_of_contact_requesting_agency_telephone_number2)
|
1521
|
+
end
|
1522
|
+
|
1523
|
+
def additional_point_of_contact_requesting_agency_telephone_number2
|
1524
|
+
get_attr("Additional POC Requesting Agency Telephone Number2")
|
1525
|
+
end
|
1526
|
+
|
1527
|
+
def additional_point_of_contact_requesting_agency_fax_number2=(new_additional_point_of_contact_requesting_agency_fax_number2)
|
1528
|
+
set_attr("Additional POC Requesting Agency Fax Number2", new_additional_point_of_contact_requesting_agency_fax_number2)
|
1529
|
+
end
|
1530
|
+
|
1531
|
+
def additional_point_of_contact_requesting_agency_fax_number2
|
1532
|
+
get_attr("Additional POC Requesting Agency Fax Number2")
|
1533
|
+
end
|
1534
|
+
|
1535
|
+
def additional_point_of_contact_requesting_agency_email_address2=(new_additional_point_of_contact_requesting_agency_email_address2)
|
1536
|
+
set_attr("Additional POC Requesting Agency Email Address2", new_additional_point_of_contact_requesting_agency_email_address2)
|
1537
|
+
end
|
1538
|
+
|
1539
|
+
def additional_point_of_contact_requesting_agency_email_address2
|
1540
|
+
get_attr("Additional POC Requesting Agency Email Address2")
|
1541
|
+
end
|
1542
|
+
|
1543
|
+
def additional_point_of_contact_requesting_agency_date2=(new_additional_point_of_contact_requesting_agency_date2)
|
1544
|
+
set_attr("Additional POC Requesting Agency Date2", new_additional_point_of_contact_requesting_agency_date2)
|
1545
|
+
end
|
1546
|
+
|
1547
|
+
def additional_point_of_contact_requesting_agency_date2
|
1548
|
+
get_attr("Additional POC Requesting Agency Date2")
|
1549
|
+
end
|
1550
|
+
|
1551
|
+
def additional_point_of_contact_servicing_agency_name2=(new_additional_point_of_contact_servicing_agency_name2)
|
1552
|
+
set_attr("Additional POC Servicing Agency Name2", new_additional_point_of_contact_servicing_agency_name2)
|
1553
|
+
end
|
1554
|
+
|
1555
|
+
def additional_point_of_contact_servicing_agency_name2
|
1556
|
+
get_attr("Additional POC Servicing Agency Name2")
|
1557
|
+
end
|
1558
|
+
|
1559
|
+
def additional_point_of_contact_servicing_agency_title2=(new_additional_point_of_contact_servicing_agency_title2)
|
1560
|
+
set_attr("Additional POC Servicing Agency Title2", new_additional_point_of_contact_servicing_agency_title2)
|
1561
|
+
end
|
1562
|
+
|
1563
|
+
def additional_point_of_contact_servicing_agency_title2
|
1564
|
+
get_attr("Additional POC Servicing Agency Title2")
|
1565
|
+
end
|
1566
|
+
|
1567
|
+
def additional_point_of_contact_servicing_agency_office_address2=(new_additional_point_of_contact_servicing_agency_office_address2)
|
1568
|
+
set_attr("Additional POC Servicing Agency Office Address2", new_additional_point_of_contact_servicing_agency_office_address2)
|
1569
|
+
end
|
1570
|
+
|
1571
|
+
def additional_point_of_contact_servicing_agency_office_address2
|
1572
|
+
get_attr("Additional POC Servicing Agency Office Address2")
|
1573
|
+
end
|
1574
|
+
|
1575
|
+
def additional_point_of_contact_servicing_agency_telephone_number2=(new_additional_point_of_contact_servicing_agency_telephone_number2)
|
1576
|
+
set_attr("Additional POC Servicing Agency Telephone Number2", new_additional_point_of_contact_servicing_agency_telephone_number2)
|
1577
|
+
end
|
1578
|
+
|
1579
|
+
def additional_point_of_contact_servicing_agency_telephone_number2
|
1580
|
+
get_attr("Additional POC Servicing Agency Telephone Number2")
|
1581
|
+
end
|
1582
|
+
|
1583
|
+
def additional_point_of_contact_servicing_agency_fax_number2=(new_additional_point_of_contact_servicing_agency_fax_number2)
|
1584
|
+
set_attr("Additional POC Servicing Agency Fax Number2", new_additional_point_of_contact_servicing_agency_fax_number2)
|
1585
|
+
end
|
1586
|
+
|
1587
|
+
def additional_point_of_contact_servicing_agency_fax_number2
|
1588
|
+
get_attr("Additional POC Servicing Agency Fax Number2")
|
1589
|
+
end
|
1590
|
+
|
1591
|
+
def additional_point_of_contact_servicing_agency_email_address2=(new_additional_point_of_contact_servicing_agency_email_address2)
|
1592
|
+
set_attr("Additional POC Servicing Agency Email Address2", new_additional_point_of_contact_servicing_agency_email_address2)
|
1593
|
+
end
|
1594
|
+
|
1595
|
+
def additional_point_of_contact_servicing_agency_email_address2
|
1596
|
+
get_attr("Additional POC Servicing Agency Email Address2")
|
1597
|
+
end
|
1598
|
+
|
1599
|
+
def additional_point_of_contact_servicing_agency_date2=(new_additional_point_of_contact_servicing_agency_date2)
|
1600
|
+
set_attr("Additional POC Servicing Agency Date2", new_additional_point_of_contact_servicing_agency_date2)
|
1601
|
+
end
|
1602
|
+
|
1603
|
+
def additional_point_of_contact_servicing_agency_date2
|
1604
|
+
get_attr("Additional POC Servicing Agency Date2")
|
1605
|
+
end
|
1606
|
+
|
1607
|
+
end
|
1608
|
+
end
|