using System.Text.Json.Serialization;
namespace Microsoft.Teams.Api.Config;
///
/// Specifies bot config auth, including type and suggestedActions.
///
public class ConfigAuth
{
///
/// Gets or sets type of bot config auth.
///
///
/// The type of bot config auth.
///
[JsonPropertyName("type")]
[JsonPropertyOrder(0)]
public string Type { get; set; } = "auth";
///
/// Gets or sets suggested actions.
///
///
/// The suggested actions of bot config auth.
///
[JsonPropertyName("suggestedActions")]
[JsonPropertyOrder(1)]
public SuggestedActions? SuggestedActions { get; set; }
}