Replies: 1 comment
-
There are public methods provided to access the entries. Follow the location where those properties have been declared and you'll find the methods to use. Some examples for Text instance: $message_text = $webhook->message();
$userid = $webhook->customer()->id();
$user_name = $webhook->customer()->name();
$messageid = $webhook->id(); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The Webhook::read function will return a Notification instance. Please, explore the different notifications availables.
I am getting the instance , but those properties are private, i can access directly, So how can i access that properties.. ??
Beta Was this translation helpful? Give feedback.
All reactions