func (c *client) Init(req *InitRequest) (*InitResponse, error) {
    response, err := c.post("/execution/init", req, &InitResponse{})
    initResponse := response.(*InitResponse)

    if err != nil {