import json def GetTimes(options): """ :param options: A dictionary containing all the paramters for the Operations options["shipcall_id"]: **Id**. *Example: 42*. Id of referenced ship call. """ # Implement your business logic here # All the parameters are present in the options argument return json.dumps([{ "duration_planned": "", "end_actual": "", "end_planned": "", "id": "", "participant_id": "", "shipcall_id": "", "start_actual": "", "start_planned": "", }]), 200 def PostTimes(body): """ :param body: The parsed body of the request """ # Implement your business logic here # All the parameters are present in the options argument return 400 def PutTimes(body): """ :param body: The parsed body of the request """ # Implement your business logic here # All the parameters are present in the options argument return 400 def DeleteTimes(options): """ :param options: A dictionary containing all the paramters for the Operations options["id"] """ # Implement your business logic here # All the parameters are present in the options argument return 400