17 lines
248 B
Python
17 lines
248 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
from datetime import datetime
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class RemoteFile(BaseModel):
|
|
"""
|
|
A file in a file-based stream.
|
|
"""
|
|
|
|
uri: str
|
|
last_modified: datetime
|