// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System.Text.Json.Serialization;
namespace Microsoft.Teams.Api.MessageExtensions;
///
/// Messaging extension response
///
public class Response
{
///
/// the message extension result
///
[JsonPropertyName("composeExtension")]
[JsonPropertyOrder(0)]
public Result? ComposeExtension { get; set; }
///
/// The cache info for this response
///
[JsonPropertyName("cacheInfo")]
[JsonPropertyOrder(1)]
public CacheInfo? CacheInfo { get; set; }
}