Class EnvironmentRequestBody
Data payload for creating an environment
Inherited Members
Namespace: Unity.Services.Apis.Admin.Environment
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "EnvironmentRequestBody")]
[Preserve]
public class EnvironmentRequestBody
Constructors
EnvironmentRequestBody(string)
Initializes a new instance of the EnvironmentRequestBody class.
Declaration
[Preserve]
public EnvironmentRequestBody(string name = null)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the environment. Only lower case characters and digits are allowed. (required). |
Properties
Name
The name of the environment. Only lower case characters and digits are allowed.
Declaration
[DataMember(Name = "name", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the environment. Only lower case characters and digits are allowed. |