Class Property
java.lang.Object
com.microsoft.graph.externalconnectors.models.Property
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Property.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Aliases.The Is Queryable.The Is Refinable.The Is Retrievable.The Is Searchable.The Labels.The Name.the OData type of the object as returned by the serviceThe Type. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal com.microsoft.graph.serializer.AdditionalDataManagervoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON object
-
Field Details
-
oDataType
the OData type of the object as returned by the service -
aliases
The Aliases. A set of aliases or a friendly names for the property. Maximum 32 characters. Only alphanumeric characters allowed. For example, each string may not contain control characters, whitespace, or any of the following: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, ', ', <, >, `, ^. Optional. -
isQueryable
@SerializedName(value="isQueryable", alternate="IsQueryable") @Expose @Nullable public Boolean isQueryableThe Is Queryable. Specifies if the property is queryable. Queryable properties can be used in Keyword Query Language (KQL) queries. Optional. -
isRefinable
@SerializedName(value="isRefinable", alternate="IsRefinable") @Expose @Nullable public Boolean isRefinableThe Is Refinable. Specifies if the property is refinable. Refinable properties can be used to filter search results in the Search API and add a refiner control in the Microsoft Search user experience. Optional. -
isRetrievable
@SerializedName(value="isRetrievable", alternate="IsRetrievable") @Expose @Nullable public Boolean isRetrievableThe Is Retrievable. Specifies if the property is retrievable. Retrievable properties are returned in the result set when items are returned by the search API. Retrievable properties are also available to add to the display template used to render search results. Optional. -
isSearchable
@SerializedName(value="isSearchable", alternate="IsSearchable") @Expose @Nullable public Boolean isSearchableThe Is Searchable. Specifies if the property is searchable. Only properties of type String or StringCollection can be searchable. Non-searchable properties are not added to the search index. Optional. -
labels
The Labels. Specifies one or more well-known tags added against a property. Labels help Microsoft Search understand the semantics of the data in the connection. Adding appropriate labels would result in an enhanced search experience (e.g. better relevance). The possible values are: title, url, createdBy, lastModifiedBy, authors, createdDateTime, lastModifiedDateTime, fileName, fileExtension, unknownFutureValue. Optional. -
name
The Name. The name of the property. Maximum 32 characters. Only alphanumeric characters allowed. For example, each string may not contain control characters, whitespace, or any of the following: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, ', ', <, >, `, ^. Required. -
type
The Type. The data type of the property. Possible values are: string, int64, double, dateTime, boolean, stringCollection, int64Collection, doubleCollection, dateTimeCollection, unknownFutureValue.
-
-
Constructor Details
-
Property
public Property()
-
-
Method Details
-
additionalDataManager
@Nonnull public final com.microsoft.graph.serializer.AdditionalDataManager additionalDataManager()- Specified by:
additionalDataManagerin interfacecom.microsoft.graph.serializer.IJsonBackedObject
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-