Skip to content

Commit

Permalink
docs: Document RESTStream.rest_method (#1824)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Jul 10, 2023
1 parent 8fb30f3 commit b323d45
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions singer_sdk/streams/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ class RESTStream(Stream, t.Generic[_TToken], metaclass=abc.ABCMeta):

_page_size: int = DEFAULT_PAGE_SIZE
_requests_session: requests.Session | None

#: HTTP method to use for requests. Defaults to "GET".
rest_method = "GET"

#: JSONPath expression to extract records from the API response.
Expand Down

0 comments on commit b323d45

Please sign in to comment.