microsoft/teams.net

Public

mirrored from https://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v2.0.0-preview.6

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.Api/MessageExtensions/Response.cs

23lines · modecode

1using System.Text.Json.Serialization;
2
3namespace Microsoft.Teams.Api.MessageExtensions;
4
5/// <summary>
6/// Messaging extension response
7/// </summary>
8public class Response
9{
10 /// <summary>
11 /// the message extension result
12 /// </summary>
13 [JsonPropertyName("composeExtension")]
14 [JsonPropertyOrder(0)]
15 public Result? ComposeExtension { get; set; }
16
17 /// <summary>
18 /// The cache info for this response
19 /// </summary>
20 [JsonPropertyName("cacheInfo")]
21 [JsonPropertyOrder(1)]
22 public CacheInfo? CacheInfo { get; set; }
23}