Skip to content

Commit

Permalink
doc: use occurred_at in register_feedback's sample code (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
figueredo authored Jul 24, 2024
1 parent d003748 commit 3f9b08e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ from incognia.feedback_events import FeedbackEvents # feedbacks are strings.

api = IncogniaAPI('client-id', 'client-secret')

api.register_feedback(FeedbackEvents.SIGNUP_ACCEPTED, dt.datetime.now(),
api.register_feedback(FeedbackEvents.ACCOUNT_TAKEOVER,
occurred_at=dt.datetime(2024, 7, 22, 15, 20, 0, tzinfo=dt.timezone.utc),
installation_id='installation-id',
account_id='account-id',
signup_id='signup-id')
account_id='account-id')
```

#### Registering Payment
Expand Down

0 comments on commit 3f9b08e

Please sign in to comment.