Enum 150 Signup Context in 24

App
System Application
Namespace
System.Environment.Configuration

Values, 2

Versions171819202122232425262728latest

Source242526272829

Source in 24

src/System Application/App/System Initialization/src/SignupContext.Enum.al29 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Environment.Configuration;

/// <summary>
/// The Signup Context is used to track from where a tenant originated.
/// </summary>
enum 150 "Signup Context"
{
    Extensible = true;

    /// <summary>
    /// The blank value indicates the sinup context was not set or unknown.
    /// </summary>
    value(0; " ")
    {
        Caption = 'Not Set';
    }
    /// <summary>
    ///  The Viral Signup value indicates the tenant was created by viral signup.
    /// </summary>
    value(1; "Viral Signup")
    {
        Caption = 'Viral Signup';
    }
}

Values, 2

IdNameObsolete
0 -
1Viral Signup-