Class JsonSetting
JsonSetting
Inherited Members
Namespace: Unity.Services.Apis.Admin.RemoteConfig
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "JsonSetting")]
[Preserve]
public class JsonSetting
Constructors
JsonSetting(string, TypeEnum?, object)
Initializes a new instance of the Json
Declaration
[Preserve]
public JsonSetting(string key = null, JsonSetting.TypeEnum? type = null, object value = null)
Parameters
Type | Name | Description |
---|---|---|
string | key | key. |
Json |
type | type. |
object | value | 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 JsonSetting.TypeEnum? Type { get; set; }
Property Value
Type | Description |
---|---|
Json |
Value
Limited to 10000 characters.
Declaration
[DataMember(Name = "value", EmitDefaultValue = false)]
[Preserve]
public object Value { get; set; }
Property Value
Type | Description |
---|---|
object | Limited to 10000 characters. |