Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

FacebookAttachment.cs 466 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  1. namespace ChannelDataBot.Models
  2. {
  3. using Newtonsoft.Json;
  4. public class FacebookAttachment
  5. {
  6. public FacebookAttachment()
  7. {
  8. this.Type = "template";
  9. }
  10. [JsonProperty("type")]
  11. public string Type { get; set; }
  12. [JsonProperty("payload")]
  13. public dynamic Payload { get; set; }
  14. public override string ToString()
  15. {
  16. return this.Payload.ToString();
  17. }
  18. }
  19. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...