Class ItemIdResolver
java.lang.Object
com.microsoft.graph.externalconnectors.models.UrlToItemResolverBase
com.microsoft.graph.externalconnectors.models.ItemIdResolver
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class ItemIdResolver
extends UrlToItemResolverBase
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Item Id Resolver.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Item Id.The Url Match Info.Fields inherited from class com.microsoft.graph.externalconnectors.models.UrlToItemResolverBase
oDataType, priority -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.externalconnectors.models.UrlToItemResolverBase
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
itemId
The Item Id. Pattern that specifies how to form the ID of the external item that the URL represents. The named groups from the regular expression in urlPattern within the urlMatchInfo can be referenced by inserting the group name inside curly brackets. -
urlMatchInfo
@SerializedName(value="urlMatchInfo", alternate="UrlMatchInfo") @Expose @Nullable public UrlMatchInfo urlMatchInfoThe Url Match Info. Configurations to match and resolve URL.
-
-
Constructor Details
-
ItemIdResolver
public ItemIdResolver()
-
-
Method Details
-
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- Overrides:
setRawObjectin classUrlToItemResolverBase- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-