public APICall <UpdateIglooLayoutOperation> UpdateIglooLayout(long sceneLayoutId, MutableSceneLayout sceneLayout)
    {
        UpdateIglooLayoutOperation operation = new UpdateIglooLayoutOperation(sceneLayoutId, sceneLayout);

        return(new APICall <UpdateIglooLayoutOperation>(clubPenguinClient, operation));
    }
        private void onUpdateIglooLayout(UpdateIglooLayoutOperation operation, HttpResponse httpResponse)
        {
            SavedSceneLayout responseBody = operation.ResponseBody;

            Service.Get <EventDispatcher>().DispatchEvent(new IglooServiceEvents.IglooLayoutUpdated(responseBody));
        }