JobSpy/src/jobspy/scrapers/goozali/model/GoozaliRow.py

9 lines
262 B
Python

from typing import Dict, List
class GoozaliRow:
def __init__(self, id: str, createdTime: str, cellValuesByColumnId: Dict[str, List[str]]):
self.id = id
self.createdTime = createdTime
self.cellValuesByColumnId = cellValuesByColumnId