Skip to content

Commit

Permalink
add form_id
Browse files Browse the repository at this point in the history
  • Loading branch information
alexviquez committed Dec 28, 2023
1 parent 6c05496 commit 74a9850
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions cuenca/resources/questionnaires.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,15 @@ def create(
user_id: str,
token: str,
alert_id: str,
form_id: str,
*,
session: Session = global_session,
) -> 'Questionnaires':
req = QuestionnaireRequest(
user_id=user_id,
token=token,
alert_id=alert_id,
form_id=form_id,
)
return cast(
'Questionnaires', cls._create(session=session, **req.dict())
Expand Down
2 changes: 1 addition & 1 deletion cuenca/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '0.15.11.dev3'
__version__ = '0.15.11.dev4'
CLIENT_VERSION = __version__
API_VERSION = '2020-03-19'

0 comments on commit 74a9850

Please sign in to comment.