Class Metadata
object containing the metadata
Inherited Members
Namespace: Unity.Services.Apis.RemoteConfig
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "metadata")]
[Preserve]
public class Metadata
Constructors
Metadata(string, string, string)
Initializes a new instance of the Metadata class.
Declaration
[Preserve]
public Metadata(string environmentId = null, string assignmentId = null, string configAssignmentHash = null)
Parameters
Type | Name | Description |
---|---|---|
string | environmentId | represents the environment of the overridden values. |
string | assignmentId | represents the assignment id of the overridden values. |
string | configAssignmentHash | represents the hash value of the assignment which could be used to retrieve the same overridden values. |
Properties
AssignmentId
represents the assignment id of the overridden values
Declaration
[DataMember(Name = "assignmentId", EmitDefaultValue = false)]
[Preserve]
public string AssignmentId { get; set; }
Property Value
Type | Description |
---|---|
string | represents the assignment id of the overridden values |
ConfigAssignmentHash
represents the hash value of the assignment which could be used to retrieve the same overridden values
Declaration
[DataMember(Name = "configAssignmentHash", EmitDefaultValue = false)]
[Preserve]
public string ConfigAssignmentHash { get; set; }
Property Value
Type | Description |
---|---|
string | represents the hash value of the assignment which could be used to retrieve the same overridden values |
EnvironmentId
represents the environment of the overridden values
Declaration
[DataMember(Name = "environmentId", EmitDefaultValue = false)]
[Preserve]
public string EnvironmentId { get; set; }
Property Value
Type | Description |
---|---|
string | represents the environment of the overridden values |