(self, char, json_str)
| 331 | return self.get(char, EsiEndpoints.CHAR_FITTINGS.value, character_id=char.characterID) |
| 332 | |
| 333 | def postFitting(self, char, json_str): |
| 334 | # @todo: new fitting ID can be recovered from resp.data, |
| 335 | return self.post(char, EsiEndpoints.CHAR_FITTINGS.value, json_str, character_id=char.characterID) |
| 336 | |
| 337 | def delFitting(self, char, fittingID): |
| 338 | return self.delete(char, EsiEndpoints.CHAR_DEL_FIT.value, character_id=char.characterID, fitting_id=fittingID) |