Class CreateIndexBodyIndexConfig
CreateIndexBodyIndexConfig
Inherited Members
Namespace: Unity.Services.Apis.Admin.CloudSave
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "CreateIndexBody_indexConfig")]
[Preserve]
public class CreateIndexBodyIndexConfig
Constructors
CreateIndexBodyIndexConfig(List<IndexField>)
Initializes a new instance of the CreateIndexBodyIndexConfig class.
Declaration
[Preserve]
public CreateIndexBodyIndexConfig(List<IndexField> fields = null)
Parameters
Type | Name | Description |
---|---|---|
List<IndexField> | fields | An array of fields in an index. Each field must be unique within the array. (required). |
Properties
Fields
An array of fields in an index. Each field must be unique within the array.
Declaration
[DataMember(Name = "fields", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public List<IndexField> Fields { get; set; }
Property Value
Type | Description |
---|---|
List<IndexField> | An array of fields in an index. Each field must be unique within the array. |