private static void GetSheetById(string id)
        {
            var form = new Dictionary <string, string> {
                { "action", QueryType.getSheet.ToString() }, { "id", id }
            };

            GoogleDriveConnector.CreateRequest(form);
        }
        private static void GetAllSheetsInfo()
        {
            Dictionary <string, string> form = new Dictionary <string, string>
            {
                { "action", QueryType.getAllSheets.ToString() }, { "id", GoogleDriveConnector.Config.spreadsheetId }
            };

            GoogleDriveConnector.CreateRequest(form);
        }
        private static void GetTest(string id)
        {
            var form = new Dictionary <string, string>
            {
                { "action", QueryType.testxlsx.ToString() }, { "id", id }
            };

            Debug.Log("GetTest :");
            GoogleDriveConnector.CreateRequest(form);
        }
        private static void GetSheetByName(string name)
        {
            name = name.Replace(".xlsx", "");
            var form = new Dictionary <string, string>
            {
                { "action", QueryType.getSheetFromName.ToString() }, { "name", name }
            };

            GoogleDriveConnector.CreateRequest(form);
        }