[Feature] Add purchase notification (#2942)

This commit is contained in:
Mihail Gribkov
2024-06-16 20:33:40 +03:00
committed by GitHub
parent 21195a8a93
commit 9d92435493
9 changed files with 113 additions and 0 deletions

View File

@@ -105,6 +105,9 @@ internal class Message
[JsonProperty("poll")]
public Optional<Poll> Poll { get; set; }
[JsonProperty("purchase_notification")]
public Optional<MessagePurchaseNotification> PurchaseNotification { get; set; }
[JsonProperty("call")]
public Optional<MessageCallData> Call { get; set; }
}