Class CopyConfigByProjectId404Response
CopyConfigByProjectId404Response
Inherited Members
Namespace: Unity.Services.Apis.Admin.RemoteConfig
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "copyConfigByProjectId_404_response")]
[Preserve]
public class CopyConfigByProjectId404Response
Constructors
CopyConfigByProjectId404Response(int, string, List<string>)
Initializes a new instance of the Copy
Declaration
[Preserve]
public CopyConfigByProjectId404Response(int code = 0, string message = null, List<string> settings = null)
Parameters
Type | Name | Description |
---|---|---|
int | code | code. |
string | message | message. |
List<string> | settings | List of Setting keys that were not found in the source Config. |
Properties
Code
Gets or Sets Code
Declaration
[DataMember(Name = "code", EmitDefaultValue = false)]
[Preserve]
public int Code { get; set; }
Property Value
Type | Description |
---|---|
int |
Message
Gets or Sets Message
Declaration
[DataMember(Name = "message", EmitDefaultValue = false)]
[Preserve]
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string |
Settings
List of Setting keys that were not found in the source Config
Declaration
[DataMember(Name = "settings", EmitDefaultValue = false)]
[Preserve]
public List<string> Settings { get; set; }