Class StringSetting
StringSetting
Inherited Members
Namespace: Unity.Services.Apis.Admin.RemoteConfig
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "StringSetting")]
[Preserve]
public class StringSetting
Constructors
StringSetting(string, TypeEnum?, string)
Initializes a new instance of the String
Declaration
[Preserve]
public StringSetting(string key = null, StringSetting.TypeEnum? type = null, string value = null)
Parameters
Type | Name | Description |
---|---|---|
string | key | key. |
String |
type | type. |
string | value | Strings are limited to 10000 characters.. |
Properties
Key
Gets or Sets Key
Declaration
[DataMember(Name = "key", EmitDefaultValue = false)]
[Preserve]
public string Key { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
Gets or Sets Type
Declaration
[DataMember(Name = "type", EmitDefaultValue = false)]
[Preserve]
public StringSetting.TypeEnum? Type { get; set; }
Property Value
Type | Description |
---|---|
String |
Value
Strings are limited to 10000 characters.
Declaration
[DataMember(Name = "value", EmitDefaultValue = false)]
[Preserve]
public string Value { get; set; }
Property Value
Type | Description |
---|---|
string | Strings are limited to 10000 characters. |