(self, thumb_field=None)
| 203 | |
| 204 | class AttachmentFileThumb: |
| 205 | def __init__(self, thumb_field=None): # type: (Optional[dict]) -> None |
| 206 | thumb_field = thumb_field or {} |
| 207 | self.id = sanitize_str_field_value(thumb_field.get('id')) |
| 208 | self.type = sanitize_str_field_value(thumb_field.get('type')) |
| 209 | self.size = sanitize_int_field_value(thumb_field.get('size')) |
| 210 | |
| 211 | |
| 212 | class AttachmentFile(object): |
nothing calls this directly
no test coverage detected