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