java.lang.Object
com.microsoft.graph.externalconnectors.models.Property
All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject

public class Property extends Object implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Property.
  • Field Details

    • oDataType

      @SerializedName("@odata.type") @Expose @Nullable public String oDataType
      the OData type of the object as returned by the service
    • aliases

      @SerializedName(value="aliases", alternate="Aliases") @Expose @Nullable public List<String> 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: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, ', ', &lt;, &gt;, `, ^. Optional.
    • isQueryable

      @SerializedName(value="isQueryable", alternate="IsQueryable") @Expose @Nullable public Boolean isQueryable
      The 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 isRefinable
      The 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 isRetrievable
      The 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 isSearchable
      The 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

      @SerializedName(value="labels", alternate="Labels") @Expose @Nullable public List<Label> 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

      @SerializedName(value="name", alternate="Name") @Expose @Nullable public String 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: :, ;, ,, (, ), [, ], {, }, %, $, +, !, *, =, &, ?, @, #, /, ~, ', ', &lt;, &gt;, `, ^. Required.
    • type

      @SerializedName(value="type", alternate="Type") @Expose @Nullable public PropertyType 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:
      additionalDataManager in interface com.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:
      setRawObject in interface com.microsoft.graph.serializer.IJsonBackedObject
      Parameters:
      serializer - the serializer
      json - the JSON object to set this object to