// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System.Text.Json.Serialization; using Microsoft.Teams.Common; namespace Microsoft.Teams.Api.Activities.Invokes; public partial class Name : StringEnum { public partial class SignIn : StringEnum { public static readonly SignIn VerifyState = new("signin/verifyState"); public bool IsVerifyState => VerifyState.Equals(Value); } } public static partial class SignIn { public class VerifyStateActivity() : SignInActivity(Name.SignIn.VerifyState) { /// /// A value that is associated with the activity. /// [JsonPropertyName("value")] [JsonPropertyOrder(32)] public new required Api.SignIn.StateVerifyQuery Value { get => (Api.SignIn.StateVerifyQuery)base.Value!; set => base.Value = value; } } }