(self, name, **kwargs)
| 382 | self.__rest_context.set_proxy(self.__proxy) |
| 383 | |
| 384 | def queue_audit_event(self, name, **kwargs): |
| 385 | # type: (str, ...) -> None |
| 386 | if self.license and 'account_type' in self.license: |
| 387 | if self.license['account_type'] == 2: |
| 388 | self.event_queue.append({ |
| 389 | 'audit_event_type': name, |
| 390 | 'inputs': {x: kwargs[x] for x in kwargs if x in {'record_uid', 'file_format', 'attachment_id', 'to_username'}} |
| 391 | }) |
| 392 | |
| 393 | proxy = property(__get_proxy, __set_proxy) |
| 394 | server = property(__get_server, __set_server) |
no outgoing calls
no test coverage detected