func (c *client) Start(req *StartRequest) (*StartResponse, error) {
    response, err := c.post("/execution/start", req, &StartResponse{})
    startResponse := response.(*StartResponse)

    if err != nil {