(self, url: Text)
| 475 | return RequestWithOptionalArgs(self.__step) |
| 476 | |
| 477 | def post(self, url: Text) -> RequestWithOptionalArgs: |
| 478 | self.__step.request = TRequest(method=MethodEnum.POST, url=url) |
| 479 | return RequestWithOptionalArgs(self.__step) |
| 480 | |
| 481 | def put(self, url: Text) -> RequestWithOptionalArgs: |
| 482 | self.__step.request = TRequest(method=MethodEnum.PUT, url=url) |