Class CreateIndexResponse
The response to a create index request
Inherited Members
Namespace: Unity.Services.Apis.Admin.CloudSave
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "CreateIndexResponse")]
[Preserve]
public class CreateIndexResponse
Constructors
CreateIndexResponse(string, IndexStatus)
Initializes a new instance of the Create
Declaration
[Preserve]
public CreateIndexResponse(string id = null, IndexStatus status = (IndexStatus)0)
Parameters
Type | Name | Description |
---|---|---|
string | id | The index ID. This identifier is only unique for a given entity type and access class, and can be used to delete the index. (required). |
Index |
status | status (required). |
Properties
Id
The index ID. This identifier is only unique for a given entity type and access class, and can be used to delete the index.
Declaration
[DataMember(Name = "id", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string | The index ID. This identifier is only unique for a given entity type and access class, and can be used to delete the index. |
Status
Gets or Sets Status
Declaration
[DataMember(Name = "status", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public IndexStatus Status { get; set; }
Property Value
Type | Description |
---|---|
Index |