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