Generate the response block of this request. Careful: it only sets the fields which can be set from the request
(self)
| 901 | block_type = 0x0102 |
| 902 | |
| 903 | def get_response(self): |
| 904 | """Generate the response block of this request. |
| 905 | Careful: it only sets the fields which can be set from the request |
| 906 | """ |
| 907 | res = IOCRBlockRes() |
| 908 | for field in ["IOCRType", "IOCRReference", "FrameID"]: |
| 909 | res.setfieldval(field, self.getfieldval(field)) |
| 910 | return res |
| 911 | |
| 912 | |
| 913 | class IOCRBlockRes(Block): |
nothing calls this directly
no test coverage detected