class Multiwoven::Integrations::Destination::GoogleSheets::Client

def fetch_google_spread_sheets(connection_config)

Extract spreadsheet id from the spreadsheet link and return the metadata for all the sheets
def fetch_google_spread_sheets(connection_config)
  spreadsheet_id = extract_spreadsheet_id(connection_config[:spreadsheet_link])
  @client.get_spreadsheet(spreadsheet_id)
end