-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathAttachmentActionData.cs
60 lines (54 loc) · 1.89 KB
/
AttachmentActionData.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using System.Collections.Generic;
namespace Bot.Builder.Community.Adapters.Webex
{
/// <summary>
/// Represents an Attachment Action - Users create attachment actions by interacting with
/// message attachments such as clicking on a submit button in a card.
/// https://developer.webex.com/docs/api/v1/attachment-actions.
/// </summary>
public class AttachmentActionData
{
/// <summary>
/// Gets or sets the unique identifier for the action.
/// </summary>
/// <value>
/// The unique identifier for the action.
/// </value>
public string Id { get; set; }
/// <summary>
/// Gets or sets the type of action performed.
/// </summary>
/// <value>
/// The type of action performed.
/// </value>
public string Type { get; set; }
/// <summary>
/// Gets or sets the parent message the attachment action was performed on.
/// </summary>
/// <value>
/// The parent message the attachment action was performed on.
/// </value>
public string MessageId { get; set; }
/// <summary>
/// Gets or sets the ID of the person who performed the action.
/// </summary>
/// <value>
/// The ID of the person who performed the action.
/// </value>
public string PersonId { get; set; }
/// <summary>
/// Gets or sets the date and time the action was created.
/// </summary>
/// <value>
/// The date and time the action was created.
/// </value>
public string Created { get; set; }
/// <summary>
/// Gets the action's inputs.
/// </summary>
/// <value>
/// The action's inputs.
/// </value>
public Dictionary<string, string> Inputs { get; } = new Dictionary<string, string>();
}
}