I am reading some named ranges from a Google Spreadsheet:

            $service = new Google_Service_Sheets( $this->client );
            $ranges = array(
                    'Kosten1',
                    'Kilometer1'
            );
            $params = array(
                'ranges' => $ranges
            );

            $response = $service->spreadsheets_values->batchGet( $this->
spreadsheetId, $params );


The API returns the desired values, however the response includes no 
reference to the original range name (i.e. 'Kosten1'). So do I basically 
have to trust that the response comes in the same order as the range 
parameter in the request? Sounds very haphazard.

Thanks for any insight.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Spreadsheets API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-spreadsheets-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to