Skip to content

Commit

Permalink
docs: Document RESTStream.rest_method
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Jul 10, 2023
1 parent 7a4f6fc commit 14ae7bb
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 14ae7bb

Please sign in to comment.