This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class GoogleSheets { | |
| static Sheets.Spreadsheets spreadsheets; | |
| static GoogleCredential credential; | |
| static final String existingSpreadSheetID = "<Your_Spreadsheet_ID>"; | |
| static final String credentialPath = "<Client_Secret_Path>"; | |
| static ValueRange response; | |
| static String testDataSheetName = "TestData"; | |
| static List<List<Object>> values ; |