Enum 150 Signup Context in 27
- App
- System Application
- Namespace
- System.Environment.Configuration
Versions171819202122232425262728latest
Source in 27
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
| Id | Name | Obsolete |
|---|---|---|
| 0 | - | |
| 1 | Viral Signup | - |