Source code for steamship.base.response from typing import Optional from steamship.base.model import CamelModel [docs] class Response(CamelModel): pass [docs] class ListResponse(Response): next_page_token: Optional[str]