diff --git a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/item/content/ContentRequestBuilder.java
index 503f3373308..bd468ae8567 100644
--- a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/item/content/ContentRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/item/content/ContentRequestBuilder.java
@@ -55,19 +55,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * The attachment content.
+ * Read the properties and relationships of a serviceAnnouncementAttachment object.
* @return a {@link InputStream}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public InputStream get() {
return get(null);
}
/**
- * The attachment content.
+ * Read the properties and relationships of a serviceAnnouncementAttachment object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link InputStream}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -122,7 +124,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * The attachment content.
+ * Read the properties and relationships of a serviceAnnouncementAttachment object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -130,7 +132,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The attachment content.
+ * Read the properties and relationships of a serviceAnnouncementAttachment object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
diff --git a/src/main/java/com/microsoft/graph/generated/agreementacceptances/AgreementAcceptancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/agreementacceptances/AgreementAcceptancesRequestBuilder.java
index c840842f0d6..5789f4d8b09 100644
--- a/src/main/java/com/microsoft/graph/generated/agreementacceptances/AgreementAcceptancesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/agreementacceptances/AgreementAcceptancesRequestBuilder.java
@@ -40,7 +40,7 @@ public AgreementAcceptanceItemRequestBuilder byAgreementAcceptanceId(@jakarta.an
* @param requestAdapter The request adapter to use to execute the requests.
*/
public AgreementAcceptancesRequestBuilder(@jakarta.annotation.Nonnull final HashMap pathParameters, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
- super(requestAdapter, "{+baseurl}/agreementAcceptances{?%24count,%24filter,%24search,%24select,%24skip,%24top}", pathParameters);
+ super(requestAdapter, "{+baseurl}/agreementAcceptances{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", pathParameters);
}
/**
* Instantiates a new {@link AgreementAcceptancesRequestBuilder} and sets the default values.
@@ -48,7 +48,7 @@ public AgreementAcceptancesRequestBuilder(@jakarta.annotation.Nonnull final Hash
* @param requestAdapter The request adapter to use to execute the requests.
*/
public AgreementAcceptancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
- super(requestAdapter, "{+baseurl}/agreementAcceptances{?%24count,%24filter,%24search,%24select,%24skip,%24top}", rawUrl);
+ super(requestAdapter, "{+baseurl}/agreementAcceptances{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
* Get entities from agreementAcceptances
@@ -161,11 +161,21 @@ public class GetQueryParameters implements QueryParameters {
*/
@jakarta.annotation.Nullable
public Boolean count;
+ /**
+ * Expand related entities
+ */
+ @jakarta.annotation.Nullable
+ public String[] expand;
/**
* Filter items by property values
*/
@jakarta.annotation.Nullable
public String filter;
+ /**
+ * Order items by property values
+ */
+ @jakarta.annotation.Nullable
+ public String[] orderby;
/**
* Search items by search phrases
*/
@@ -198,6 +208,8 @@ public Map toQueryParameters() {
allQueryParams.put("%24search", search);
allQueryParams.put("%24skip", skip);
allQueryParams.put("%24top", top);
+ allQueryParams.put("%24expand", expand);
+ allQueryParams.put("%24orderby", orderby);
allQueryParams.put("%24select", select);
return allQueryParams;
}
diff --git a/src/main/java/com/microsoft/graph/generated/agreements/AgreementsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/agreements/AgreementsRequestBuilder.java
index 2a1a95f6c58..7dedec70d50 100644
--- a/src/main/java/com/microsoft/graph/generated/agreements/AgreementsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/agreements/AgreementsRequestBuilder.java
@@ -40,7 +40,7 @@ public AgreementItemRequestBuilder byAgreementId(@jakarta.annotation.Nonnull fin
* @param requestAdapter The request adapter to use to execute the requests.
*/
public AgreementsRequestBuilder(@jakarta.annotation.Nonnull final HashMap pathParameters, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
- super(requestAdapter, "{+baseurl}/agreements{?%24count,%24filter,%24search,%24select,%24skip,%24top}", pathParameters);
+ super(requestAdapter, "{+baseurl}/agreements{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", pathParameters);
}
/**
* Instantiates a new {@link AgreementsRequestBuilder} and sets the default values.
@@ -48,7 +48,7 @@ public AgreementsRequestBuilder(@jakarta.annotation.Nonnull final HashMap toQueryParameters() {
allQueryParams.put("%24search", search);
allQueryParams.put("%24skip", skip);
allQueryParams.put("%24top", top);
+ allQueryParams.put("%24expand", expand);
+ allQueryParams.put("%24orderby", orderby);
allQueryParams.put("%24select", select);
return allQueryParams;
}
diff --git a/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/item/bot/BotRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/item/bot/BotRequestBuilder.java
index a6c7bda4858..f2cd089ee9d 100644
--- a/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/item/bot/BotRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/item/bot/BotRequestBuilder.java
@@ -55,19 +55,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * The details of the bot specified in the Teams app manifest.
+ * Get the bot associated with a specific definition of the TeamsApp.
* @return a {@link TeamworkBot}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public TeamworkBot get() {
return get(null);
}
/**
- * The details of the bot specified in the Teams app manifest.
+ * Get the bot associated with a specific definition of the TeamsApp.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link TeamworkBot}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public TeamworkBot get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -122,7 +124,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * The details of the bot specified in the Teams app manifest.
+ * Get the bot associated with a specific definition of the TeamsApp.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -130,7 +132,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The details of the bot specified in the Teams app manifest.
+ * Get the bot associated with a specific definition of the TeamsApp.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -182,7 +184,7 @@ public BotRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * The details of the bot specified in the Teams app manifest.
+ * Get the bot associated with a specific definition of the TeamsApp.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/members/item/ConversationMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/members/item/ConversationMemberItemRequestBuilder.java
index 98fe724ad7d..a76e0084403 100644
--- a/src/main/java/com/microsoft/graph/generated/chats/item/members/item/ConversationMemberItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/chats/item/members/item/ConversationMemberItemRequestBuilder.java
@@ -57,21 +57,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Retrieve a conversationMember from a chat or channel.
+ * Retrieve a conversationMember from a chat.
* @return a {@link ConversationMember}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ConversationMember get() {
return get(null);
}
/**
- * Retrieve a conversationMember from a chat or channel.
+ * Retrieve a conversationMember from a chat.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ConversationMember}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ConversationMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -126,7 +126,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Retrieve a conversationMember from a chat or channel.
+ * Retrieve a conversationMember from a chat.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -134,7 +134,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Retrieve a conversationMember from a chat or channel.
+ * Retrieve a conversationMember from a chat.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -186,7 +186,7 @@ public ConversationMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Retrieve a conversationMember from a chat or channel.
+ * Retrieve a conversationMember from a chat.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java
index 4b6adf55964..0f64e4fbb2c 100644
--- a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java
@@ -54,19 +54,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * The unique identifier for an entity. Read-only.
+ * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content.
* @return a {@link InputStream}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public InputStream get() {
return get(null);
}
/**
- * The unique identifier for an entity. Read-only.
+ * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link InputStream}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -121,7 +123,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * The unique identifier for an entity. Read-only.
+ * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -129,7 +131,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The unique identifier for an entity. Read-only.
+ * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
diff --git a/src/main/java/com/microsoft/graph/generated/communications/callrecords/CallRecordsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/callrecords/CallRecordsRequestBuilder.java
index e179a5beab0..2514f01904c 100644
--- a/src/main/java/com/microsoft/graph/generated/communications/callrecords/CallRecordsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/communications/callrecords/CallRecordsRequestBuilder.java
@@ -63,19 +63,21 @@ public CallRecordsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl
super(requestAdapter, "{+baseurl}/communications/callRecords{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions.
+ * Get the list of callRecord objects and their properties. The results can be optionally filtered using the $filter query parameter on the startDateTime and participant id properties. Note that the listed call records don't include expandable relationships such as sessions and participants_v2. You can expand these relationships using Get callRecord for a specific record.
* @return a {@link CallRecordCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public CallRecordCollectionResponse get() {
return get(null);
}
/**
- * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions.
+ * Get the list of callRecord objects and their properties. The results can be optionally filtered using the $filter query parameter on the startDateTime and participant id properties. Note that the listed call records don't include expandable relationships such as sessions and participants_v2. You can expand these relationships using Get callRecord for a specific record.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link CallRecordCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public CallRecordCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -134,7 +136,7 @@ public CallRecord post(@jakarta.annotation.Nonnull final CallRecord body, @jakar
return this.requestAdapter.send(requestInfo, errorMapping, CallRecord::createFromDiscriminatorValue);
}
/**
- * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions.
+ * Get the list of callRecord objects and their properties. The results can be optionally filtered using the $filter query parameter on the startDateTime and participant id properties. Note that the listed call records don't include expandable relationships such as sessions and participants_v2. You can expand these relationships using Get callRecord for a specific record.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -142,7 +144,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions.
+ * Get the list of callRecord objects and their properties. The results can be optionally filtered using the $filter query parameter on the startDateTime and participant id properties. Note that the listed call records don't include expandable relationships such as sessions and participants_v2. You can expand these relationships using Get callRecord for a specific record.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -188,7 +190,7 @@ public CallRecordsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin
return new CallRecordsRequestBuilder(rawUrl, requestAdapter);
}
/**
- * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions.
+ * Get the list of callRecord objects and their properties. The results can be optionally filtered using the $filter query parameter on the startDateTime and participant id properties. Note that the listed call records don't include expandable relationships such as sessions and participants_v2. You can expand these relationships using Get callRecord for a specific record.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/CallRecordItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/CallRecordItemRequestBuilder.java
index 6b01bf6a664..cab05b62391 100644
--- a/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/CallRecordItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/CallRecordItemRequestBuilder.java
@@ -1,5 +1,7 @@
package com.microsoft.graph.communications.callrecords.item;
+import com.microsoft.graph.communications.callrecords.item.organizer_v2.OrganizerV2RequestBuilder;
+import com.microsoft.graph.communications.callrecords.item.participants_v2.ParticipantsV2RequestBuilder;
import com.microsoft.graph.communications.callrecords.item.sessions.SessionsRequestBuilder;
import com.microsoft.graph.models.callrecords.CallRecord;
import com.microsoft.graph.models.odataerrors.ODataError;
@@ -21,6 +23,22 @@
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class CallRecordItemRequestBuilder extends BaseRequestBuilder {
+ /**
+ * Provides operations to manage the organizer_v2 property of the microsoft.graph.callRecords.callRecord entity.
+ * @return a {@link OrganizerV2RequestBuilder}
+ */
+ @jakarta.annotation.Nonnull
+ public OrganizerV2RequestBuilder organizerV2() {
+ return new OrganizerV2RequestBuilder(pathParameters, requestAdapter);
+ }
+ /**
+ * Provides operations to manage the participants_v2 property of the microsoft.graph.callRecords.callRecord entity.
+ * @return a {@link ParticipantsV2RequestBuilder}
+ */
+ @jakarta.annotation.Nonnull
+ public ParticipantsV2RequestBuilder participantsV2() {
+ return new ParticipantsV2RequestBuilder(pathParameters, requestAdapter);
+ }
/**
* Provides operations to manage the sessions property of the microsoft.graph.callRecords.callRecord entity.
* @return a {@link SessionsRequestBuilder}
@@ -64,7 +82,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions.
+ * Retrieve the properties and relationships of a callRecord object. You can get the id of a callRecord in two ways:* Subscribe to change notifications to the /communications/callRecords endpoint.* Use the callChainId property of a call. The call record is available only after the associated call is completed.
* @return a {@link CallRecord}
* @throws ODataError When receiving a 4XX or 5XX status code
* @see Find more info here
@@ -74,7 +92,7 @@ public CallRecord get() {
return get(null);
}
/**
- * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions.
+ * Retrieve the properties and relationships of a callRecord object. You can get the id of a callRecord in two ways:* Subscribe to change notifications to the /communications/callRecords endpoint.* Use the callChainId property of a call. The call record is available only after the associated call is completed.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link CallRecord}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -133,7 +151,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions.
+ * Retrieve the properties and relationships of a callRecord object. You can get the id of a callRecord in two ways:* Subscribe to change notifications to the /communications/callRecords endpoint.* Use the callChainId property of a call. The call record is available only after the associated call is completed.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -141,7 +159,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions.
+ * Retrieve the properties and relationships of a callRecord object. You can get the id of a callRecord in two ways:* Subscribe to change notifications to the /communications/callRecords endpoint.* Use the callChainId property of a call. The call record is available only after the associated call is completed.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -193,7 +211,7 @@ public CallRecordItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final St
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions.
+ * Retrieve the properties and relationships of a callRecord object. You can get the id of a callRecord in two ways:* Subscribe to change notifications to the /communications/callRecords endpoint.* Use the callChainId property of a call. The call record is available only after the associated call is completed.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/organizer_v2/OrganizerV2RequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/organizer_v2/OrganizerV2RequestBuilder.java
new file mode 100644
index 00000000000..4013e4000ee
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/organizer_v2/OrganizerV2RequestBuilder.java
@@ -0,0 +1,228 @@
+package com.microsoft.graph.communications.callrecords.item.organizer_v2;
+
+import com.microsoft.graph.models.callrecords.Organizer;
+import com.microsoft.graph.models.odataerrors.ODataError;
+import com.microsoft.kiota.BaseRequestBuilder;
+import com.microsoft.kiota.BaseRequestConfiguration;
+import com.microsoft.kiota.HttpMethod;
+import com.microsoft.kiota.QueryParameters;
+import com.microsoft.kiota.RequestAdapter;
+import com.microsoft.kiota.RequestInformation;
+import com.microsoft.kiota.RequestOption;
+import com.microsoft.kiota.serialization.Parsable;
+import com.microsoft.kiota.serialization.ParsableFactory;
+import java.util.Collection;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Objects;
+/**
+ * Provides operations to manage the organizer_v2 property of the microsoft.graph.callRecords.callRecord entity.
+ */
+@jakarta.annotation.Generated("com.microsoft.kiota")
+public class OrganizerV2RequestBuilder extends BaseRequestBuilder {
+ /**
+ * Instantiates a new {@link OrganizerV2RequestBuilder} and sets the default values.
+ * @param pathParameters Path parameters for the request
+ * @param requestAdapter The request adapter to use to execute the requests.
+ */
+ public OrganizerV2RequestBuilder(@jakarta.annotation.Nonnull final HashMap pathParameters, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
+ super(requestAdapter, "{+baseurl}/communications/callRecords/{callRecord%2Did}/organizer_v2{?%24expand,%24select}", pathParameters);
+ }
+ /**
+ * Instantiates a new {@link OrganizerV2RequestBuilder} and sets the default values.
+ * @param rawUrl The raw URL to use for the request builder.
+ * @param requestAdapter The request adapter to use to execute the requests.
+ */
+ public OrganizerV2RequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
+ super(requestAdapter, "{+baseurl}/communications/callRecords/{callRecord%2Did}/organizer_v2{?%24expand,%24select}", rawUrl);
+ }
+ /**
+ * Delete navigation property organizer_v2 for communications
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ public void delete() {
+ delete(null);
+ }
+ /**
+ * Delete navigation property organizer_v2 for communications
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
+ final HashMap> errorMapping = new HashMap>();
+ errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
+ this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
+ }
+ /**
+ * Identity of the organizer of the call. This relationship is expanded by default in callRecord methods.
+ * @return a {@link Organizer}
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ @jakarta.annotation.Nullable
+ public Organizer get() {
+ return get(null);
+ }
+ /**
+ * Identity of the organizer of the call. This relationship is expanded by default in callRecord methods.
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link Organizer}
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ @jakarta.annotation.Nullable
+ public Organizer get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
+ final HashMap> errorMapping = new HashMap>();
+ errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
+ return this.requestAdapter.send(requestInfo, errorMapping, Organizer::createFromDiscriminatorValue);
+ }
+ /**
+ * Update the navigation property organizer_v2 in communications
+ * @param body The request body
+ * @return a {@link Organizer}
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ @jakarta.annotation.Nullable
+ public Organizer patch(@jakarta.annotation.Nonnull final Organizer body) {
+ return patch(body, null);
+ }
+ /**
+ * Update the navigation property organizer_v2 in communications
+ * @param body The request body
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link Organizer}
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ @jakarta.annotation.Nullable
+ public Organizer patch(@jakarta.annotation.Nonnull final Organizer body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ Objects.requireNonNull(body);
+ final RequestInformation requestInfo = toPatchRequestInformation(body, requestConfiguration);
+ final HashMap> errorMapping = new HashMap>();
+ errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
+ return this.requestAdapter.send(requestInfo, errorMapping, Organizer::createFromDiscriminatorValue);
+ }
+ /**
+ * Delete navigation property organizer_v2 for communications
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toDeleteRequestInformation() {
+ return toDeleteRequestInformation(null);
+ }
+ /**
+ * Delete navigation property organizer_v2 for communications
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ final RequestInformation requestInfo = new RequestInformation(HttpMethod.DELETE, urlTemplate, pathParameters);
+ requestInfo.configure(requestConfiguration, DeleteRequestConfiguration::new);
+ requestInfo.headers.tryAdd("Accept", "application/json");
+ return requestInfo;
+ }
+ /**
+ * Identity of the organizer of the call. This relationship is expanded by default in callRecord methods.
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toGetRequestInformation() {
+ return toGetRequestInformation(null);
+ }
+ /**
+ * Identity of the organizer of the call. This relationship is expanded by default in callRecord methods.
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ final RequestInformation requestInfo = new RequestInformation(HttpMethod.GET, urlTemplate, pathParameters);
+ requestInfo.configure(requestConfiguration, GetRequestConfiguration::new, x -> x.queryParameters);
+ requestInfo.headers.tryAdd("Accept", "application/json");
+ return requestInfo;
+ }
+ /**
+ * Update the navigation property organizer_v2 in communications
+ * @param body The request body
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull final Organizer body) {
+ return toPatchRequestInformation(body, null);
+ }
+ /**
+ * Update the navigation property organizer_v2 in communications
+ * @param body The request body
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull final Organizer body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ Objects.requireNonNull(body);
+ final RequestInformation requestInfo = new RequestInformation(HttpMethod.PATCH, urlTemplate, pathParameters);
+ requestInfo.configure(requestConfiguration, PatchRequestConfiguration::new);
+ requestInfo.headers.tryAdd("Accept", "application/json");
+ requestInfo.setContentFromParsable(requestAdapter, "application/json", body);
+ return requestInfo;
+ }
+ /**
+ * Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
+ * @param rawUrl The raw URL to use for the request builder.
+ * @return a {@link OrganizerV2RequestBuilder}
+ */
+ @jakarta.annotation.Nonnull
+ public OrganizerV2RequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
+ Objects.requireNonNull(rawUrl);
+ return new OrganizerV2RequestBuilder(rawUrl, requestAdapter);
+ }
+ /**
+ * Configuration for the request such as headers, query parameters, and middleware options.
+ */
+ @jakarta.annotation.Generated("com.microsoft.kiota")
+ public class DeleteRequestConfiguration extends BaseRequestConfiguration {
+ }
+ /**
+ * Identity of the organizer of the call. This relationship is expanded by default in callRecord methods.
+ */
+ @jakarta.annotation.Generated("com.microsoft.kiota")
+ public class GetQueryParameters implements QueryParameters {
+ /**
+ * Expand related entities
+ */
+ @jakarta.annotation.Nullable
+ public String[] expand;
+ /**
+ * Select properties to be returned
+ */
+ @jakarta.annotation.Nullable
+ public String[] select;
+ /**
+ * Extracts the query parameters into a map for the URI template parsing.
+ * @return a {@link Map}
+ */
+ @jakarta.annotation.Nonnull
+ public Map toQueryParameters() {
+ final Map allQueryParams = new HashMap();
+ allQueryParams.put("%24expand", expand);
+ allQueryParams.put("%24select", select);
+ return allQueryParams;
+ }
+ }
+ /**
+ * Configuration for the request such as headers, query parameters, and middleware options.
+ */
+ @jakarta.annotation.Generated("com.microsoft.kiota")
+ public class GetRequestConfiguration extends BaseRequestConfiguration {
+ /**
+ * Request query parameters
+ */
+ @jakarta.annotation.Nullable
+ public GetQueryParameters queryParameters = new GetQueryParameters();
+ }
+ /**
+ * Configuration for the request such as headers, query parameters, and middleware options.
+ */
+ @jakarta.annotation.Generated("com.microsoft.kiota")
+ public class PatchRequestConfiguration extends BaseRequestConfiguration {
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/participants_v2/ParticipantsV2RequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/participants_v2/ParticipantsV2RequestBuilder.java
new file mode 100644
index 00000000000..a4d9d2651a2
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/participants_v2/ParticipantsV2RequestBuilder.java
@@ -0,0 +1,245 @@
+package com.microsoft.graph.communications.callrecords.item.participants_v2;
+
+import com.microsoft.graph.communications.callrecords.item.participants_v2.count.CountRequestBuilder;
+import com.microsoft.graph.communications.callrecords.item.participants_v2.item.ParticipantItemRequestBuilder;
+import com.microsoft.graph.models.callrecords.Participant;
+import com.microsoft.graph.models.callrecords.ParticipantCollectionResponse;
+import com.microsoft.graph.models.odataerrors.ODataError;
+import com.microsoft.kiota.BaseRequestBuilder;
+import com.microsoft.kiota.BaseRequestConfiguration;
+import com.microsoft.kiota.HttpMethod;
+import com.microsoft.kiota.QueryParameters;
+import com.microsoft.kiota.RequestAdapter;
+import com.microsoft.kiota.RequestInformation;
+import com.microsoft.kiota.RequestOption;
+import com.microsoft.kiota.serialization.Parsable;
+import com.microsoft.kiota.serialization.ParsableFactory;
+import java.util.Collection;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Objects;
+/**
+ * Provides operations to manage the participants_v2 property of the microsoft.graph.callRecords.callRecord entity.
+ */
+@jakarta.annotation.Generated("com.microsoft.kiota")
+public class ParticipantsV2RequestBuilder extends BaseRequestBuilder {
+ /**
+ * Provides operations to count the resources in the collection.
+ * @return a {@link CountRequestBuilder}
+ */
+ @jakarta.annotation.Nonnull
+ public CountRequestBuilder count() {
+ return new CountRequestBuilder(pathParameters, requestAdapter);
+ }
+ /**
+ * Provides operations to manage the participants_v2 property of the microsoft.graph.callRecords.callRecord entity.
+ * @param participantId The unique identifier of participant
+ * @return a {@link ParticipantItemRequestBuilder}
+ */
+ @jakarta.annotation.Nonnull
+ public ParticipantItemRequestBuilder byParticipantId(@jakarta.annotation.Nonnull final String participantId) {
+ Objects.requireNonNull(participantId);
+ final HashMap urlTplParams = new HashMap(this.pathParameters);
+ urlTplParams.put("participant%2Did", participantId);
+ return new ParticipantItemRequestBuilder(urlTplParams, requestAdapter);
+ }
+ /**
+ * Instantiates a new {@link ParticipantsV2RequestBuilder} and sets the default values.
+ * @param pathParameters Path parameters for the request
+ * @param requestAdapter The request adapter to use to execute the requests.
+ */
+ public ParticipantsV2RequestBuilder(@jakarta.annotation.Nonnull final HashMap pathParameters, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
+ super(requestAdapter, "{+baseurl}/communications/callRecords/{callRecord%2Did}/participants_v2{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", pathParameters);
+ }
+ /**
+ * Instantiates a new {@link ParticipantsV2RequestBuilder} and sets the default values.
+ * @param rawUrl The raw URL to use for the request builder.
+ * @param requestAdapter The request adapter to use to execute the requests.
+ */
+ public ParticipantsV2RequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
+ super(requestAdapter, "{+baseurl}/communications/callRecords/{callRecord%2Did}/participants_v2{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
+ }
+ /**
+ * Get the list of participant objects associated with a callRecord.
+ * @return a {@link ParticipantCollectionResponse}
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
+ */
+ @jakarta.annotation.Nullable
+ public ParticipantCollectionResponse get() {
+ return get(null);
+ }
+ /**
+ * Get the list of participant objects associated with a callRecord.
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link ParticipantCollectionResponse}
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
+ */
+ @jakarta.annotation.Nullable
+ public ParticipantCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
+ final HashMap> errorMapping = new HashMap>();
+ errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
+ return this.requestAdapter.send(requestInfo, errorMapping, ParticipantCollectionResponse::createFromDiscriminatorValue);
+ }
+ /**
+ * Create new navigation property to participants_v2 for communications
+ * @param body The request body
+ * @return a {@link Participant}
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ @jakarta.annotation.Nullable
+ public Participant post(@jakarta.annotation.Nonnull final Participant body) {
+ return post(body, null);
+ }
+ /**
+ * Create new navigation property to participants_v2 for communications
+ * @param body The request body
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link Participant}
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ @jakarta.annotation.Nullable
+ public Participant post(@jakarta.annotation.Nonnull final Participant body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ Objects.requireNonNull(body);
+ final RequestInformation requestInfo = toPostRequestInformation(body, requestConfiguration);
+ final HashMap> errorMapping = new HashMap>();
+ errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
+ return this.requestAdapter.send(requestInfo, errorMapping, Participant::createFromDiscriminatorValue);
+ }
+ /**
+ * Get the list of participant objects associated with a callRecord.
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toGetRequestInformation() {
+ return toGetRequestInformation(null);
+ }
+ /**
+ * Get the list of participant objects associated with a callRecord.
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ final RequestInformation requestInfo = new RequestInformation(HttpMethod.GET, urlTemplate, pathParameters);
+ requestInfo.configure(requestConfiguration, GetRequestConfiguration::new, x -> x.queryParameters);
+ requestInfo.headers.tryAdd("Accept", "application/json");
+ return requestInfo;
+ }
+ /**
+ * Create new navigation property to participants_v2 for communications
+ * @param body The request body
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull final Participant body) {
+ return toPostRequestInformation(body, null);
+ }
+ /**
+ * Create new navigation property to participants_v2 for communications
+ * @param body The request body
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull final Participant body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ Objects.requireNonNull(body);
+ final RequestInformation requestInfo = new RequestInformation(HttpMethod.POST, urlTemplate, pathParameters);
+ requestInfo.configure(requestConfiguration, PostRequestConfiguration::new);
+ requestInfo.headers.tryAdd("Accept", "application/json");
+ requestInfo.setContentFromParsable(requestAdapter, "application/json", body);
+ return requestInfo;
+ }
+ /**
+ * Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
+ * @param rawUrl The raw URL to use for the request builder.
+ * @return a {@link ParticipantsV2RequestBuilder}
+ */
+ @jakarta.annotation.Nonnull
+ public ParticipantsV2RequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
+ Objects.requireNonNull(rawUrl);
+ return new ParticipantsV2RequestBuilder(rawUrl, requestAdapter);
+ }
+ /**
+ * Get the list of participant objects associated with a callRecord.
+ */
+ @jakarta.annotation.Generated("com.microsoft.kiota")
+ public class GetQueryParameters implements QueryParameters {
+ /**
+ * Include count of items
+ */
+ @jakarta.annotation.Nullable
+ public Boolean count;
+ /**
+ * Expand related entities
+ */
+ @jakarta.annotation.Nullable
+ public String[] expand;
+ /**
+ * Filter items by property values
+ */
+ @jakarta.annotation.Nullable
+ public String filter;
+ /**
+ * Order items by property values
+ */
+ @jakarta.annotation.Nullable
+ public String[] orderby;
+ /**
+ * Search items by search phrases
+ */
+ @jakarta.annotation.Nullable
+ public String search;
+ /**
+ * Select properties to be returned
+ */
+ @jakarta.annotation.Nullable
+ public String[] select;
+ /**
+ * Skip the first n items
+ */
+ @jakarta.annotation.Nullable
+ public Integer skip;
+ /**
+ * Show only the first n items
+ */
+ @jakarta.annotation.Nullable
+ public Integer top;
+ /**
+ * Extracts the query parameters into a map for the URI template parsing.
+ * @return a {@link Map}
+ */
+ @jakarta.annotation.Nonnull
+ public Map toQueryParameters() {
+ final Map allQueryParams = new HashMap();
+ allQueryParams.put("%24count", count);
+ allQueryParams.put("%24filter", filter);
+ allQueryParams.put("%24search", search);
+ allQueryParams.put("%24skip", skip);
+ allQueryParams.put("%24top", top);
+ allQueryParams.put("%24expand", expand);
+ allQueryParams.put("%24orderby", orderby);
+ allQueryParams.put("%24select", select);
+ return allQueryParams;
+ }
+ }
+ /**
+ * Configuration for the request such as headers, query parameters, and middleware options.
+ */
+ @jakarta.annotation.Generated("com.microsoft.kiota")
+ public class GetRequestConfiguration extends BaseRequestConfiguration {
+ /**
+ * Request query parameters
+ */
+ @jakarta.annotation.Nullable
+ public GetQueryParameters queryParameters = new GetQueryParameters();
+ }
+ /**
+ * Configuration for the request such as headers, query parameters, and middleware options.
+ */
+ @jakarta.annotation.Generated("com.microsoft.kiota")
+ public class PostRequestConfiguration extends BaseRequestConfiguration {
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/participants_v2/count/CountRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/participants_v2/count/CountRequestBuilder.java
new file mode 100644
index 00000000000..363d3053ae9
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/participants_v2/count/CountRequestBuilder.java
@@ -0,0 +1,128 @@
+package com.microsoft.graph.communications.callrecords.item.participants_v2.count;
+
+import com.microsoft.graph.models.odataerrors.ODataError;
+import com.microsoft.kiota.BaseRequestBuilder;
+import com.microsoft.kiota.BaseRequestConfiguration;
+import com.microsoft.kiota.HttpMethod;
+import com.microsoft.kiota.QueryParameters;
+import com.microsoft.kiota.RequestAdapter;
+import com.microsoft.kiota.RequestInformation;
+import com.microsoft.kiota.RequestOption;
+import com.microsoft.kiota.serialization.Parsable;
+import com.microsoft.kiota.serialization.ParsableFactory;
+import java.util.Collection;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Objects;
+/**
+ * Provides operations to count the resources in the collection.
+ */
+@jakarta.annotation.Generated("com.microsoft.kiota")
+public class CountRequestBuilder extends BaseRequestBuilder {
+ /**
+ * Instantiates a new {@link CountRequestBuilder} and sets the default values.
+ * @param pathParameters Path parameters for the request
+ * @param requestAdapter The request adapter to use to execute the requests.
+ */
+ public CountRequestBuilder(@jakarta.annotation.Nonnull final HashMap pathParameters, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
+ super(requestAdapter, "{+baseurl}/communications/callRecords/{callRecord%2Did}/participants_v2/$count{?%24filter,%24search}", pathParameters);
+ }
+ /**
+ * Instantiates a new {@link CountRequestBuilder} and sets the default values.
+ * @param rawUrl The raw URL to use for the request builder.
+ * @param requestAdapter The request adapter to use to execute the requests.
+ */
+ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
+ super(requestAdapter, "{+baseurl}/communications/callRecords/{callRecord%2Did}/participants_v2/$count{?%24filter,%24search}", rawUrl);
+ }
+ /**
+ * Get the number of the resource
+ * @return a {@link Integer}
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ @jakarta.annotation.Nullable
+ public Integer get() {
+ return get(null);
+ }
+ /**
+ * Get the number of the resource
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link Integer}
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ @jakarta.annotation.Nullable
+ public Integer get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
+ final HashMap> errorMapping = new HashMap>();
+ errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
+ return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Integer.class);
+ }
+ /**
+ * Get the number of the resource
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toGetRequestInformation() {
+ return toGetRequestInformation(null);
+ }
+ /**
+ * Get the number of the resource
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ final RequestInformation requestInfo = new RequestInformation(HttpMethod.GET, urlTemplate, pathParameters);
+ requestInfo.configure(requestConfiguration, GetRequestConfiguration::new, x -> x.queryParameters);
+ requestInfo.headers.tryAdd("Accept", "text/plain;q=0.9");
+ return requestInfo;
+ }
+ /**
+ * Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
+ * @param rawUrl The raw URL to use for the request builder.
+ * @return a {@link CountRequestBuilder}
+ */
+ @jakarta.annotation.Nonnull
+ public CountRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
+ Objects.requireNonNull(rawUrl);
+ return new CountRequestBuilder(rawUrl, requestAdapter);
+ }
+ /**
+ * Get the number of the resource
+ */
+ @jakarta.annotation.Generated("com.microsoft.kiota")
+ public class GetQueryParameters implements QueryParameters {
+ /**
+ * Filter items by property values
+ */
+ @jakarta.annotation.Nullable
+ public String filter;
+ /**
+ * Search items by search phrases
+ */
+ @jakarta.annotation.Nullable
+ public String search;
+ /**
+ * Extracts the query parameters into a map for the URI template parsing.
+ * @return a {@link Map}
+ */
+ @jakarta.annotation.Nonnull
+ public Map toQueryParameters() {
+ final Map allQueryParams = new HashMap();
+ allQueryParams.put("%24filter", filter);
+ allQueryParams.put("%24search", search);
+ return allQueryParams;
+ }
+ }
+ /**
+ * Configuration for the request such as headers, query parameters, and middleware options.
+ */
+ @jakarta.annotation.Generated("com.microsoft.kiota")
+ public class GetRequestConfiguration extends BaseRequestConfiguration {
+ /**
+ * Request query parameters
+ */
+ @jakarta.annotation.Nullable
+ public GetQueryParameters queryParameters = new GetQueryParameters();
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/participants_v2/item/ParticipantItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/participants_v2/item/ParticipantItemRequestBuilder.java
new file mode 100644
index 00000000000..d9d09d2351b
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/participants_v2/item/ParticipantItemRequestBuilder.java
@@ -0,0 +1,228 @@
+package com.microsoft.graph.communications.callrecords.item.participants_v2.item;
+
+import com.microsoft.graph.models.callrecords.Participant;
+import com.microsoft.graph.models.odataerrors.ODataError;
+import com.microsoft.kiota.BaseRequestBuilder;
+import com.microsoft.kiota.BaseRequestConfiguration;
+import com.microsoft.kiota.HttpMethod;
+import com.microsoft.kiota.QueryParameters;
+import com.microsoft.kiota.RequestAdapter;
+import com.microsoft.kiota.RequestInformation;
+import com.microsoft.kiota.RequestOption;
+import com.microsoft.kiota.serialization.Parsable;
+import com.microsoft.kiota.serialization.ParsableFactory;
+import java.util.Collection;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Objects;
+/**
+ * Provides operations to manage the participants_v2 property of the microsoft.graph.callRecords.callRecord entity.
+ */
+@jakarta.annotation.Generated("com.microsoft.kiota")
+public class ParticipantItemRequestBuilder extends BaseRequestBuilder {
+ /**
+ * Instantiates a new {@link ParticipantItemRequestBuilder} and sets the default values.
+ * @param pathParameters Path parameters for the request
+ * @param requestAdapter The request adapter to use to execute the requests.
+ */
+ public ParticipantItemRequestBuilder(@jakarta.annotation.Nonnull final HashMap pathParameters, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
+ super(requestAdapter, "{+baseurl}/communications/callRecords/{callRecord%2Did}/participants_v2/{participant%2Did}{?%24expand,%24select}", pathParameters);
+ }
+ /**
+ * Instantiates a new {@link ParticipantItemRequestBuilder} and sets the default values.
+ * @param rawUrl The raw URL to use for the request builder.
+ * @param requestAdapter The request adapter to use to execute the requests.
+ */
+ public ParticipantItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
+ super(requestAdapter, "{+baseurl}/communications/callRecords/{callRecord%2Did}/participants_v2/{participant%2Did}{?%24expand,%24select}", rawUrl);
+ }
+ /**
+ * Delete navigation property participants_v2 for communications
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ public void delete() {
+ delete(null);
+ }
+ /**
+ * Delete navigation property participants_v2 for communications
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
+ final HashMap> errorMapping = new HashMap>();
+ errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
+ this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
+ }
+ /**
+ * List of distinct participants in the call.
+ * @return a {@link Participant}
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ @jakarta.annotation.Nullable
+ public Participant get() {
+ return get(null);
+ }
+ /**
+ * List of distinct participants in the call.
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link Participant}
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ @jakarta.annotation.Nullable
+ public Participant get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
+ final HashMap> errorMapping = new HashMap>();
+ errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
+ return this.requestAdapter.send(requestInfo, errorMapping, Participant::createFromDiscriminatorValue);
+ }
+ /**
+ * Update the navigation property participants_v2 in communications
+ * @param body The request body
+ * @return a {@link Participant}
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ @jakarta.annotation.Nullable
+ public Participant patch(@jakarta.annotation.Nonnull final Participant body) {
+ return patch(body, null);
+ }
+ /**
+ * Update the navigation property participants_v2 in communications
+ * @param body The request body
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link Participant}
+ * @throws ODataError When receiving a 4XX or 5XX status code
+ */
+ @jakarta.annotation.Nullable
+ public Participant patch(@jakarta.annotation.Nonnull final Participant body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ Objects.requireNonNull(body);
+ final RequestInformation requestInfo = toPatchRequestInformation(body, requestConfiguration);
+ final HashMap> errorMapping = new HashMap>();
+ errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
+ return this.requestAdapter.send(requestInfo, errorMapping, Participant::createFromDiscriminatorValue);
+ }
+ /**
+ * Delete navigation property participants_v2 for communications
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toDeleteRequestInformation() {
+ return toDeleteRequestInformation(null);
+ }
+ /**
+ * Delete navigation property participants_v2 for communications
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ final RequestInformation requestInfo = new RequestInformation(HttpMethod.DELETE, urlTemplate, pathParameters);
+ requestInfo.configure(requestConfiguration, DeleteRequestConfiguration::new);
+ requestInfo.headers.tryAdd("Accept", "application/json");
+ return requestInfo;
+ }
+ /**
+ * List of distinct participants in the call.
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toGetRequestInformation() {
+ return toGetRequestInformation(null);
+ }
+ /**
+ * List of distinct participants in the call.
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ final RequestInformation requestInfo = new RequestInformation(HttpMethod.GET, urlTemplate, pathParameters);
+ requestInfo.configure(requestConfiguration, GetRequestConfiguration::new, x -> x.queryParameters);
+ requestInfo.headers.tryAdd("Accept", "application/json");
+ return requestInfo;
+ }
+ /**
+ * Update the navigation property participants_v2 in communications
+ * @param body The request body
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull final Participant body) {
+ return toPatchRequestInformation(body, null);
+ }
+ /**
+ * Update the navigation property participants_v2 in communications
+ * @param body The request body
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
+ * @return a {@link RequestInformation}
+ */
+ @jakarta.annotation.Nonnull
+ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull final Participant body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
+ Objects.requireNonNull(body);
+ final RequestInformation requestInfo = new RequestInformation(HttpMethod.PATCH, urlTemplate, pathParameters);
+ requestInfo.configure(requestConfiguration, PatchRequestConfiguration::new);
+ requestInfo.headers.tryAdd("Accept", "application/json");
+ requestInfo.setContentFromParsable(requestAdapter, "application/json", body);
+ return requestInfo;
+ }
+ /**
+ * Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
+ * @param rawUrl The raw URL to use for the request builder.
+ * @return a {@link ParticipantItemRequestBuilder}
+ */
+ @jakarta.annotation.Nonnull
+ public ParticipantItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
+ Objects.requireNonNull(rawUrl);
+ return new ParticipantItemRequestBuilder(rawUrl, requestAdapter);
+ }
+ /**
+ * Configuration for the request such as headers, query parameters, and middleware options.
+ */
+ @jakarta.annotation.Generated("com.microsoft.kiota")
+ public class DeleteRequestConfiguration extends BaseRequestConfiguration {
+ }
+ /**
+ * List of distinct participants in the call.
+ */
+ @jakarta.annotation.Generated("com.microsoft.kiota")
+ public class GetQueryParameters implements QueryParameters {
+ /**
+ * Expand related entities
+ */
+ @jakarta.annotation.Nullable
+ public String[] expand;
+ /**
+ * Select properties to be returned
+ */
+ @jakarta.annotation.Nullable
+ public String[] select;
+ /**
+ * Extracts the query parameters into a map for the URI template parsing.
+ * @return a {@link Map}
+ */
+ @jakarta.annotation.Nonnull
+ public Map toQueryParameters() {
+ final Map allQueryParams = new HashMap();
+ allQueryParams.put("%24expand", expand);
+ allQueryParams.put("%24select", select);
+ return allQueryParams;
+ }
+ }
+ /**
+ * Configuration for the request such as headers, query parameters, and middleware options.
+ */
+ @jakarta.annotation.Generated("com.microsoft.kiota")
+ public class GetRequestConfiguration extends BaseRequestConfiguration {
+ /**
+ * Request query parameters
+ */
+ @jakarta.annotation.Nullable
+ public GetQueryParameters queryParameters = new GetQueryParameters();
+ }
+ /**
+ * Configuration for the request such as headers, query parameters, and middleware options.
+ */
+ @jakarta.annotation.Generated("com.microsoft.kiota")
+ public class PatchRequestConfiguration extends BaseRequestConfiguration {
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/DeviceAppManagementRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/DeviceAppManagementRequestBuilder.java
index 737da07232b..06bb44aad38 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/DeviceAppManagementRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/DeviceAppManagementRequestBuilder.java
@@ -175,7 +175,7 @@ public DeviceAppManagementRequestBuilder(@jakarta.annotation.Nonnull final Strin
* Read properties and relationships of the deviceAppManagement object.
* @return a {@link DeviceAppManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceAppManagement get() {
@@ -186,7 +186,7 @@ public DeviceAppManagement get() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceAppManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceAppManagement get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -200,7 +200,7 @@ public DeviceAppManagement get(@jakarta.annotation.Nullable final java.util.func
* @param body The request body
* @return a {@link DeviceAppManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceAppManagement patch(@jakarta.annotation.Nonnull final DeviceAppManagement body) {
@@ -212,7 +212,7 @@ public DeviceAppManagement patch(@jakarta.annotation.Nonnull final DeviceAppMana
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceAppManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceAppManagement patch(@jakarta.annotation.Nonnull final DeviceAppManagement body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/ManagedAppPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/ManagedAppPoliciesRequestBuilder.java
index 34be4bbb1bd..5035f87d2ee 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/ManagedAppPoliciesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/ManagedAppPoliciesRequestBuilder.java
@@ -60,21 +60,21 @@ public ManagedAppPoliciesRequestBuilder(@jakarta.annotation.Nonnull final String
super(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the managedAppPolicy objects.
+ * List properties and relationships of the windowsInformationProtection objects.
* @return a {@link ManagedAppPolicyCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppPolicyCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the managedAppPolicy objects.
+ * List properties and relationships of the windowsInformationProtection objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedAppPolicyCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -109,7 +109,7 @@ public ManagedAppPolicy post(@jakarta.annotation.Nonnull final ManagedAppPolicy
return this.requestAdapter.send(requestInfo, errorMapping, ManagedAppPolicy::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the managedAppPolicy objects.
+ * List properties and relationships of the windowsInformationProtection objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -117,7 +117,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the managedAppPolicy objects.
+ * List properties and relationships of the windowsInformationProtection objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -163,7 +163,7 @@ public ManagedAppPoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull fina
return new ManagedAppPoliciesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the managedAppPolicy objects.
+ * List properties and relationships of the windowsInformationProtection objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/ManagedAppPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/ManagedAppPolicyItemRequestBuilder.java
index fe9ce73d4b5..1eff5341195 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/ManagedAppPolicyItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/ManagedAppPolicyItemRequestBuilder.java
@@ -64,21 +64,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the managedAppConfiguration object.
+ * Read properties and relationships of the targetedManagedAppProtection object.
* @return a {@link ManagedAppPolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppPolicy get() {
return get(null);
}
/**
- * Read properties and relationships of the managedAppConfiguration object.
+ * Read properties and relationships of the targetedManagedAppProtection object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedAppPolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -133,7 +133,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the managedAppConfiguration object.
+ * Read properties and relationships of the targetedManagedAppProtection object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -141,7 +141,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the managedAppConfiguration object.
+ * Read properties and relationships of the targetedManagedAppProtection object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -193,7 +193,7 @@ public ManagedAppPolicyItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the managedAppConfiguration object.
+ * Read properties and relationships of the targetedManagedAppProtection object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/targetapps/TargetAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/targetapps/TargetAppsRequestBuilder.java
index 90134a12068..648674ff3e8 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/targetapps/TargetAppsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/targetapps/TargetAppsRequestBuilder.java
@@ -38,7 +38,7 @@ public TargetAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
* Not yet documented
* @param body The request body
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody body) {
post(body, null);
@@ -48,7 +48,7 @@ public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody bod
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
Objects.requireNonNull(body);
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/ManagedAppRegistrationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/ManagedAppRegistrationsRequestBuilder.java
index 74c6a44cf3f..73ca8b4688a 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/ManagedAppRegistrationsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/ManagedAppRegistrationsRequestBuilder.java
@@ -69,21 +69,21 @@ public ManagedAppRegistrationsRequestBuilder(@jakarta.annotation.Nonnull final S
super(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppRegistrations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the managedAppRegistration objects.
+ * List properties and relationships of the androidManagedAppRegistration objects.
* @return a {@link ManagedAppRegistrationCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppRegistrationCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the managedAppRegistration objects.
+ * List properties and relationships of the androidManagedAppRegistration objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedAppRegistrationCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppRegistrationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -120,7 +120,7 @@ public ManagedAppRegistration post(@jakarta.annotation.Nonnull final ManagedAppR
return this.requestAdapter.send(requestInfo, errorMapping, ManagedAppRegistration::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the managedAppRegistration objects.
+ * List properties and relationships of the androidManagedAppRegistration objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -128,7 +128,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the managedAppRegistration objects.
+ * List properties and relationships of the androidManagedAppRegistration objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -174,7 +174,7 @@ public ManagedAppRegistrationsRequestBuilder withUrl(@jakarta.annotation.Nonnull
return new ManagedAppRegistrationsRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the managedAppRegistration objects.
+ * List properties and relationships of the androidManagedAppRegistration objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/ManagedAppRegistrationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/ManagedAppRegistrationItemRequestBuilder.java
index 7bedaf1be58..598d403434c 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/ManagedAppRegistrationItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/ManagedAppRegistrationItemRequestBuilder.java
@@ -82,21 +82,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the iosManagedAppRegistration object.
+ * Read properties and relationships of the managedAppRegistration object.
* @return a {@link ManagedAppRegistration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppRegistration get() {
return get(null);
}
/**
- * Read properties and relationships of the iosManagedAppRegistration object.
+ * Read properties and relationships of the managedAppRegistration object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedAppRegistration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppRegistration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -151,7 +151,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the iosManagedAppRegistration object.
+ * Read properties and relationships of the managedAppRegistration object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -159,7 +159,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the iosManagedAppRegistration object.
+ * Read properties and relationships of the managedAppRegistration object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -211,7 +211,7 @@ public ManagedAppRegistrationItemRequestBuilder withUrl(@jakarta.annotation.Nonn
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the iosManagedAppRegistration object.
+ * Read properties and relationships of the managedAppRegistration object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/appliedpolicies/item/targetapps/TargetAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/appliedpolicies/item/targetapps/TargetAppsRequestBuilder.java
index 6b8d2345dc5..860d86b8311 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/appliedpolicies/item/targetapps/TargetAppsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/appliedpolicies/item/targetapps/TargetAppsRequestBuilder.java
@@ -38,7 +38,7 @@ public TargetAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
* Not yet documented
* @param body The request body
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody body) {
post(body, null);
@@ -48,7 +48,7 @@ public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody bod
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
Objects.requireNonNull(body);
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/intendedpolicies/item/targetapps/TargetAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/intendedpolicies/item/targetapps/TargetAppsRequestBuilder.java
index 910c4cf6a34..85fe66c7236 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/intendedpolicies/item/targetapps/TargetAppsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/intendedpolicies/item/targetapps/TargetAppsRequestBuilder.java
@@ -38,7 +38,7 @@ public TargetAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
* Not yet documented
* @param body The request body
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody body) {
post(body, null);
@@ -48,7 +48,7 @@ public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody bod
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
Objects.requireNonNull(body);
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappstatuses/item/ManagedAppStatusItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappstatuses/item/ManagedAppStatusItemRequestBuilder.java
index e0cfb0e8610..dfe8eb0ac38 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappstatuses/item/ManagedAppStatusItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappstatuses/item/ManagedAppStatusItemRequestBuilder.java
@@ -55,21 +55,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the managedAppStatusRaw object.
+ * Read properties and relationships of the managedAppStatus object.
* @return a {@link ManagedAppStatus}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppStatus get() {
return get(null);
}
/**
- * Read properties and relationships of the managedAppStatusRaw object.
+ * Read properties and relationships of the managedAppStatus object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedAppStatus}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppStatus get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -124,7 +124,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the managedAppStatusRaw object.
+ * Read properties and relationships of the managedAppStatus object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -132,7 +132,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the managedAppStatusRaw object.
+ * Read properties and relationships of the managedAppStatus object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -184,7 +184,7 @@ public ManagedAppStatusItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the managedAppStatusRaw object.
+ * Read properties and relationships of the managedAppStatus object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/ManagedEBooksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/ManagedEBooksRequestBuilder.java
index 0fe3f3f8483..c806be424f1 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/ManagedEBooksRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/ManagedEBooksRequestBuilder.java
@@ -60,21 +60,21 @@ public ManagedEBooksRequestBuilder(@jakarta.annotation.Nonnull final String rawU
super(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the managedEBook objects.
+ * List properties and relationships of the iosVppEBook objects.
* @return a {@link ManagedEBookCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBookCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the managedEBook objects.
+ * List properties and relationships of the iosVppEBook objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedEBookCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBookCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -111,7 +111,7 @@ public ManagedEBook post(@jakarta.annotation.Nonnull final ManagedEBook body, @j
return this.requestAdapter.send(requestInfo, errorMapping, ManagedEBook::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the managedEBook objects.
+ * List properties and relationships of the iosVppEBook objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -119,7 +119,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the managedEBook objects.
+ * List properties and relationships of the iosVppEBook objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -165,7 +165,7 @@ public ManagedEBooksRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str
return new ManagedEBooksRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the managedEBook objects.
+ * List properties and relationships of the iosVppEBook objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/ManagedEBookItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/ManagedEBookItemRequestBuilder.java
index 99e8d46dffd..8f1d73a214c 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/ManagedEBookItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/ManagedEBookItemRequestBuilder.java
@@ -102,21 +102,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the iosVppEBook object.
+ * Read properties and relationships of the managedEBook object.
* @return a {@link ManagedEBook}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBook get() {
return get(null);
}
/**
- * Read properties and relationships of the iosVppEBook object.
+ * Read properties and relationships of the managedEBook object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedEBook}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBook get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -173,7 +173,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the iosVppEBook object.
+ * Read properties and relationships of the managedEBook object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -181,7 +181,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the iosVppEBook object.
+ * Read properties and relationships of the managedEBook object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -233,7 +233,7 @@ public ManagedEBookItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the iosVppEBook object.
+ * Read properties and relationships of the managedEBook object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/AssignmentsRequestBuilder.java
index 4dca98ed3dc..84b388d943d 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/AssignmentsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/AssignmentsRequestBuilder.java
@@ -60,21 +60,21 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl
super(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the managedEBookAssignment objects.
+ * List properties and relationships of the iosVppEBookAssignment objects.
* @return a {@link ManagedEBookAssignmentCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBookAssignmentCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the managedEBookAssignment objects.
+ * List properties and relationships of the iosVppEBookAssignment objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedEBookAssignmentCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBookAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -111,7 +111,7 @@ public ManagedEBookAssignment post(@jakarta.annotation.Nonnull final ManagedEBoo
return this.requestAdapter.send(requestInfo, errorMapping, ManagedEBookAssignment::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the managedEBookAssignment objects.
+ * List properties and relationships of the iosVppEBookAssignment objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -119,7 +119,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the managedEBookAssignment objects.
+ * List properties and relationships of the iosVppEBookAssignment objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -165,7 +165,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin
return new AssignmentsRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the managedEBookAssignment objects.
+ * List properties and relationships of the iosVppEBookAssignment objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/item/ManagedEBookAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/item/ManagedEBookAssignmentItemRequestBuilder.java
index d4668c691ae..5323ac2827f 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/item/ManagedEBookAssignmentItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/item/ManagedEBookAssignmentItemRequestBuilder.java
@@ -37,18 +37,18 @@ public ManagedEBookAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull fina
super(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/assignments/{managedEBookAssignment%2Did}{?%24expand,%24select}", rawUrl);
}
/**
- * Deletes a managedEBookAssignment.
+ * Deletes a iosVppEBookAssignment.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
}
/**
- * Deletes a managedEBookAssignment.
+ * Deletes a iosVppEBookAssignment.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -57,21 +57,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the iosVppEBookAssignment object.
+ * Read properties and relationships of the managedEBookAssignment object.
* @return a {@link ManagedEBookAssignment}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBookAssignment get() {
return get(null);
}
/**
- * Read properties and relationships of the iosVppEBookAssignment object.
+ * Read properties and relationships of the managedEBookAssignment object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedEBookAssignment}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBookAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -81,23 +81,23 @@ public ManagedEBookAssignment get(@jakarta.annotation.Nullable final java.util.f
return this.requestAdapter.send(requestInfo, errorMapping, ManagedEBookAssignment::createFromDiscriminatorValue);
}
/**
- * Update the properties of a iosVppEBookAssignment object.
+ * Update the properties of a managedEBookAssignment object.
* @param body The request body
* @return a {@link ManagedEBookAssignment}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBookAssignment patch(@jakarta.annotation.Nonnull final ManagedEBookAssignment body) {
return patch(body, null);
}
/**
- * Update the properties of a iosVppEBookAssignment object.
+ * Update the properties of a managedEBookAssignment object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedEBookAssignment}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBookAssignment patch(@jakarta.annotation.Nonnull final ManagedEBookAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -108,7 +108,7 @@ public ManagedEBookAssignment patch(@jakarta.annotation.Nonnull final ManagedEBo
return this.requestAdapter.send(requestInfo, errorMapping, ManagedEBookAssignment::createFromDiscriminatorValue);
}
/**
- * Deletes a managedEBookAssignment.
+ * Deletes a iosVppEBookAssignment.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -116,7 +116,7 @@ public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
- * Deletes a managedEBookAssignment.
+ * Deletes a iosVppEBookAssignment.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -128,7 +128,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the iosVppEBookAssignment object.
+ * Read properties and relationships of the managedEBookAssignment object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -136,7 +136,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the iosVppEBookAssignment object.
+ * Read properties and relationships of the managedEBookAssignment object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -148,7 +148,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the properties of a iosVppEBookAssignment object.
+ * Update the properties of a managedEBookAssignment object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -157,7 +157,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Update the properties of a iosVppEBookAssignment object.
+ * Update the properties of a managedEBookAssignment object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -188,7 +188,7 @@ public ManagedEBookAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonn
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the iosVppEBookAssignment object.
+ * Read properties and relationships of the managedEBookAssignment object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.java
index 783c561d2a9..2dffcd3051c 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.java
@@ -111,21 +111,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the managedDeviceMobileAppConfiguration object.
+ * Read properties and relationships of the iosMobileAppConfiguration object.
* @return a {@link ManagedDeviceMobileAppConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedDeviceMobileAppConfiguration get() {
return get(null);
}
/**
- * Read properties and relationships of the managedDeviceMobileAppConfiguration object.
+ * Read properties and relationships of the iosMobileAppConfiguration object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedDeviceMobileAppConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedDeviceMobileAppConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -182,7 +182,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the managedDeviceMobileAppConfiguration object.
+ * Read properties and relationships of the iosMobileAppConfiguration object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -190,7 +190,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the managedDeviceMobileAppConfiguration object.
+ * Read properties and relationships of the iosMobileAppConfiguration object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -242,7 +242,7 @@ public ManagedDeviceMobileAppConfigurationItemRequestBuilder withUrl(@jakarta.an
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the managedDeviceMobileAppConfiguration object.
+ * Read properties and relationships of the iosMobileAppConfiguration object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/MobileAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/MobileAppsRequestBuilder.java
index f6b7893b37e..fc2a05255ae 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/MobileAppsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/MobileAppsRequestBuilder.java
@@ -204,21 +204,21 @@ public MobileAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the macOSLobApp objects.
+ * List properties and relationships of the androidStoreApp objects.
* @return a {@link MobileAppCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public MobileAppCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the macOSLobApp objects.
+ * List properties and relationships of the androidStoreApp objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link MobileAppCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public MobileAppCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -255,7 +255,7 @@ public MobileApp post(@jakarta.annotation.Nonnull final MobileApp body, @jakarta
return this.requestAdapter.send(requestInfo, errorMapping, MobileApp::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the macOSLobApp objects.
+ * List properties and relationships of the androidStoreApp objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -263,7 +263,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the macOSLobApp objects.
+ * List properties and relationships of the androidStoreApp objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -309,7 +309,7 @@ public MobileAppsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new MobileAppsRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the macOSLobApp objects.
+ * List properties and relationships of the androidStoreApp objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/MobileAppItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/MobileAppItemRequestBuilder.java
index 161141a6015..c1d8b3d0396 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/MobileAppItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/MobileAppItemRequestBuilder.java
@@ -208,18 +208,18 @@ public MobileAppItemRequestBuilder(@jakarta.annotation.Nonnull final String rawU
super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}{?%24expand,%24select}", rawUrl);
}
/**
- * Deletes a iosLobApp.
+ * Deletes a windowsMicrosoftEdgeApp.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
}
/**
- * Deletes a iosLobApp.
+ * Deletes a windowsMicrosoftEdgeApp.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -228,21 +228,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the windowsUniversalAppX object.
+ * Read properties and relationships of the managedMobileLobApp object.
* @return a {@link MobileApp}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public MobileApp get() {
return get(null);
}
/**
- * Read properties and relationships of the windowsUniversalAppX object.
+ * Read properties and relationships of the managedMobileLobApp object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link MobileApp}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public MobileApp get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -252,23 +252,23 @@ public MobileApp get(@jakarta.annotation.Nullable final java.util.function.Consu
return this.requestAdapter.send(requestInfo, errorMapping, MobileApp::createFromDiscriminatorValue);
}
/**
- * Update the properties of a windowsMicrosoftEdgeApp object.
+ * Update the properties of a windowsAppX object.
* @param body The request body
* @return a {@link MobileApp}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public MobileApp patch(@jakarta.annotation.Nonnull final MobileApp body) {
return patch(body, null);
}
/**
- * Update the properties of a windowsMicrosoftEdgeApp object.
+ * Update the properties of a windowsAppX object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link MobileApp}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public MobileApp patch(@jakarta.annotation.Nonnull final MobileApp body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -279,7 +279,7 @@ public MobileApp patch(@jakarta.annotation.Nonnull final MobileApp body, @jakart
return this.requestAdapter.send(requestInfo, errorMapping, MobileApp::createFromDiscriminatorValue);
}
/**
- * Deletes a iosLobApp.
+ * Deletes a windowsMicrosoftEdgeApp.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -287,7 +287,7 @@ public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
- * Deletes a iosLobApp.
+ * Deletes a windowsMicrosoftEdgeApp.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -299,7 +299,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the windowsUniversalAppX object.
+ * Read properties and relationships of the managedMobileLobApp object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -307,7 +307,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the windowsUniversalAppX object.
+ * Read properties and relationships of the managedMobileLobApp object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -319,7 +319,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the properties of a windowsMicrosoftEdgeApp object.
+ * Update the properties of a windowsAppX object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -328,7 +328,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Update the properties of a windowsMicrosoftEdgeApp object.
+ * Update the properties of a windowsAppX object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -359,7 +359,7 @@ public MobileAppItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the windowsUniversalAppX object.
+ * Read properties and relationships of the managedMobileLobApp object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/DeviceManagementRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/DeviceManagementRequestBuilder.java
index f905d3a01ad..4b4ebc0d9e9 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/DeviceManagementRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/DeviceManagementRequestBuilder.java
@@ -573,7 +573,7 @@ public DeviceManagementRequestBuilder(@jakarta.annotation.Nonnull final String r
* Read properties and relationships of the deviceManagement object.
* @return a {@link DeviceManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceManagement get() {
@@ -584,7 +584,7 @@ public DeviceManagement get() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceManagement get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -608,7 +608,7 @@ public GetEffectivePermissionsWithScopeRequestBuilder getEffectivePermissionsWit
* @param body The request body
* @return a {@link DeviceManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceManagement patch(@jakarta.annotation.Nonnull final DeviceManagement body) {
@@ -620,7 +620,7 @@ public DeviceManagement patch(@jakarta.annotation.Nonnull final DeviceManagement
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceManagement patch(@jakarta.annotation.Nonnull final DeviceManagement body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/DeviceCompliancePoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/DeviceCompliancePoliciesRequestBuilder.java
index 313c991abd9..2cd4225bb2d 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/DeviceCompliancePoliciesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/DeviceCompliancePoliciesRequestBuilder.java
@@ -60,21 +60,21 @@ public DeviceCompliancePoliciesRequestBuilder(@jakarta.annotation.Nonnull final
super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the windows81CompliancePolicy objects.
+ * List properties and relationships of the iosCompliancePolicy objects.
* @return a {@link DeviceCompliancePolicyCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicyCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the windows81CompliancePolicy objects.
+ * List properties and relationships of the iosCompliancePolicy objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceCompliancePolicyCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -84,23 +84,23 @@ public DeviceCompliancePolicyCollectionResponse get(@jakarta.annotation.Nullable
return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicyCollectionResponse::createFromDiscriminatorValue);
}
/**
- * Create a new windows81CompliancePolicy object.
+ * Create a new androidCompliancePolicy object.
* @param body The request body
* @return a {@link DeviceCompliancePolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicy post(@jakarta.annotation.Nonnull final DeviceCompliancePolicy body) {
return post(body, null);
}
/**
- * Create a new windows81CompliancePolicy object.
+ * Create a new androidCompliancePolicy object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceCompliancePolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicy post(@jakarta.annotation.Nonnull final DeviceCompliancePolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -111,7 +111,7 @@ public DeviceCompliancePolicy post(@jakarta.annotation.Nonnull final DeviceCompl
return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicy::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the windows81CompliancePolicy objects.
+ * List properties and relationships of the iosCompliancePolicy objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -119,7 +119,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the windows81CompliancePolicy objects.
+ * List properties and relationships of the iosCompliancePolicy objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -131,7 +131,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Create a new windows81CompliancePolicy object.
+ * Create a new androidCompliancePolicy object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -140,7 +140,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Create a new windows81CompliancePolicy object.
+ * Create a new androidCompliancePolicy object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -165,7 +165,7 @@ public DeviceCompliancePoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnul
return new DeviceCompliancePoliciesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the windows81CompliancePolicy objects.
+ * List properties and relationships of the iosCompliancePolicy objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/DeviceCompliancePolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/DeviceCompliancePolicyItemRequestBuilder.java
index 2e0a20f1ed9..dfd94cc8f84 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/DeviceCompliancePolicyItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/DeviceCompliancePolicyItemRequestBuilder.java
@@ -118,18 +118,18 @@ public DeviceCompliancePolicyItemRequestBuilder(@jakarta.annotation.Nonnull fina
super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}{?%24expand,%24select}", rawUrl);
}
/**
- * Deletes a windows10MobileCompliancePolicy.
+ * Deletes a iosCompliancePolicy.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
}
/**
- * Deletes a windows10MobileCompliancePolicy.
+ * Deletes a iosCompliancePolicy.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -138,21 +138,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the androidWorkProfileCompliancePolicy object.
+ * Read properties and relationships of the windowsPhone81CompliancePolicy object.
* @return a {@link DeviceCompliancePolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicy get() {
return get(null);
}
/**
- * Read properties and relationships of the androidWorkProfileCompliancePolicy object.
+ * Read properties and relationships of the windowsPhone81CompliancePolicy object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceCompliancePolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -162,23 +162,23 @@ public DeviceCompliancePolicy get(@jakarta.annotation.Nullable final java.util.f
return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicy::createFromDiscriminatorValue);
}
/**
- * Update the properties of a windows10MobileCompliancePolicy object.
+ * Update the properties of a macOSCompliancePolicy object.
* @param body The request body
* @return a {@link DeviceCompliancePolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicy patch(@jakarta.annotation.Nonnull final DeviceCompliancePolicy body) {
return patch(body, null);
}
/**
- * Update the properties of a windows10MobileCompliancePolicy object.
+ * Update the properties of a macOSCompliancePolicy object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceCompliancePolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicy patch(@jakarta.annotation.Nonnull final DeviceCompliancePolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -189,7 +189,7 @@ public DeviceCompliancePolicy patch(@jakarta.annotation.Nonnull final DeviceComp
return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicy::createFromDiscriminatorValue);
}
/**
- * Deletes a windows10MobileCompliancePolicy.
+ * Deletes a iosCompliancePolicy.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -197,7 +197,7 @@ public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
- * Deletes a windows10MobileCompliancePolicy.
+ * Deletes a iosCompliancePolicy.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -209,7 +209,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the androidWorkProfileCompliancePolicy object.
+ * Read properties and relationships of the windowsPhone81CompliancePolicy object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -217,7 +217,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the androidWorkProfileCompliancePolicy object.
+ * Read properties and relationships of the windowsPhone81CompliancePolicy object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -229,7 +229,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the properties of a windows10MobileCompliancePolicy object.
+ * Update the properties of a macOSCompliancePolicy object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -238,7 +238,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Update the properties of a windows10MobileCompliancePolicy object.
+ * Update the properties of a macOSCompliancePolicy object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -269,7 +269,7 @@ public DeviceCompliancePolicyItemRequestBuilder withUrl(@jakarta.annotation.Nonn
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the androidWorkProfileCompliancePolicy object.
+ * Read properties and relationships of the windowsPhone81CompliancePolicy object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/ScheduledActionConfigurationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/ScheduledActionConfigurationsRequestBuilder.java
index 9bac30642b6..f6e0075331a 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/ScheduledActionConfigurationsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/ScheduledActionConfigurationsRequestBuilder.java
@@ -60,19 +60,21 @@ public ScheduledActionConfigurationsRequestBuilder(@jakarta.annotation.Nonnull f
super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule%2Did}/scheduledActionConfigurations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action.
+ * List properties and relationships of the deviceComplianceActionItem objects.
* @return a {@link DeviceComplianceActionItemCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceComplianceActionItemCollectionResponse get() {
return get(null);
}
/**
- * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action.
+ * List properties and relationships of the deviceComplianceActionItem objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceComplianceActionItemCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceComplianceActionItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -82,21 +84,23 @@ public DeviceComplianceActionItemCollectionResponse get(@jakarta.annotation.Null
return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceActionItemCollectionResponse::createFromDiscriminatorValue);
}
/**
- * Create new navigation property to scheduledActionConfigurations for deviceManagement
+ * Create a new deviceComplianceActionItem object.
* @param body The request body
* @return a {@link DeviceComplianceActionItem}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceComplianceActionItem post(@jakarta.annotation.Nonnull final DeviceComplianceActionItem body) {
return post(body, null);
}
/**
- * Create new navigation property to scheduledActionConfigurations for deviceManagement
+ * Create a new deviceComplianceActionItem object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceComplianceActionItem}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceComplianceActionItem post(@jakarta.annotation.Nonnull final DeviceComplianceActionItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -107,7 +111,7 @@ public DeviceComplianceActionItem post(@jakarta.annotation.Nonnull final DeviceC
return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceActionItem::createFromDiscriminatorValue);
}
/**
- * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action.
+ * List properties and relationships of the deviceComplianceActionItem objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -115,7 +119,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action.
+ * List properties and relationships of the deviceComplianceActionItem objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -127,7 +131,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Create new navigation property to scheduledActionConfigurations for deviceManagement
+ * Create a new deviceComplianceActionItem object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -136,7 +140,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Create new navigation property to scheduledActionConfigurations for deviceManagement
+ * Create a new deviceComplianceActionItem object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -161,7 +165,7 @@ public ScheduledActionConfigurationsRequestBuilder withUrl(@jakarta.annotation.N
return new ScheduledActionConfigurationsRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action.
+ * List properties and relationships of the deviceComplianceActionItem objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/item/DeviceComplianceActionItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/item/DeviceComplianceActionItemItemRequestBuilder.java
index e844a6833f9..df4ea91c2eb 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/item/DeviceComplianceActionItemItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/item/DeviceComplianceActionItemItemRequestBuilder.java
@@ -37,16 +37,18 @@ public DeviceComplianceActionItemItemRequestBuilder(@jakarta.annotation.Nonnull
super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule%2Did}/scheduledActionConfigurations/{deviceComplianceActionItem%2Did}{?%24expand,%24select}", rawUrl);
}
/**
- * Delete navigation property scheduledActionConfigurations for deviceManagement
+ * Deletes a deviceComplianceActionItem.
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
public void delete() {
delete(null);
}
/**
- * Delete navigation property scheduledActionConfigurations for deviceManagement
+ * Deletes a deviceComplianceActionItem.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -55,19 +57,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action.
+ * Read properties and relationships of the deviceComplianceActionItem object.
* @return a {@link DeviceComplianceActionItem}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceComplianceActionItem get() {
return get(null);
}
/**
- * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action.
+ * Read properties and relationships of the deviceComplianceActionItem object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceComplianceActionItem}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceComplianceActionItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -77,21 +81,23 @@ public DeviceComplianceActionItem get(@jakarta.annotation.Nullable final java.ut
return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceActionItem::createFromDiscriminatorValue);
}
/**
- * Update the navigation property scheduledActionConfigurations in deviceManagement
+ * Update the properties of a deviceComplianceActionItem object.
* @param body The request body
* @return a {@link DeviceComplianceActionItem}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceComplianceActionItem patch(@jakarta.annotation.Nonnull final DeviceComplianceActionItem body) {
return patch(body, null);
}
/**
- * Update the navigation property scheduledActionConfigurations in deviceManagement
+ * Update the properties of a deviceComplianceActionItem object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceComplianceActionItem}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceComplianceActionItem patch(@jakarta.annotation.Nonnull final DeviceComplianceActionItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -102,7 +108,7 @@ public DeviceComplianceActionItem patch(@jakarta.annotation.Nonnull final Device
return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceActionItem::createFromDiscriminatorValue);
}
/**
- * Delete navigation property scheduledActionConfigurations for deviceManagement
+ * Deletes a deviceComplianceActionItem.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -110,7 +116,7 @@ public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
- * Delete navigation property scheduledActionConfigurations for deviceManagement
+ * Deletes a deviceComplianceActionItem.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -122,7 +128,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action.
+ * Read properties and relationships of the deviceComplianceActionItem object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -130,7 +136,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action.
+ * Read properties and relationships of the deviceComplianceActionItem object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -142,7 +148,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the navigation property scheduledActionConfigurations in deviceManagement
+ * Update the properties of a deviceComplianceActionItem object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -151,7 +157,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Update the navigation property scheduledActionConfigurations in deviceManagement
+ * Update the properties of a deviceComplianceActionItem object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -182,7 +188,7 @@ public DeviceComplianceActionItemItemRequestBuilder withUrl(@jakarta.annotation.
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action.
+ * Read properties and relationships of the deviceComplianceActionItem object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/DeviceConfigurationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/DeviceConfigurationsRequestBuilder.java
index 86305da7fde..edac32e4655 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/DeviceConfigurationsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/DeviceConfigurationsRequestBuilder.java
@@ -60,21 +60,21 @@ public DeviceConfigurationsRequestBuilder(@jakarta.annotation.Nonnull final Stri
super(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the macOSDeviceFeaturesConfiguration objects.
+ * List properties and relationships of the windows10CustomConfiguration objects.
* @return a {@link DeviceConfigurationCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfigurationCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the macOSDeviceFeaturesConfiguration objects.
+ * List properties and relationships of the windows10CustomConfiguration objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceConfigurationCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfigurationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -84,23 +84,23 @@ public DeviceConfigurationCollectionResponse get(@jakarta.annotation.Nullable fi
return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationCollectionResponse::createFromDiscriminatorValue);
}
/**
- * Create a new windowsPhone81GeneralConfiguration object.
+ * Create a new macOSCustomConfiguration object.
* @param body The request body
* @return a {@link DeviceConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfiguration post(@jakarta.annotation.Nonnull final DeviceConfiguration body) {
return post(body, null);
}
/**
- * Create a new windowsPhone81GeneralConfiguration object.
+ * Create a new macOSCustomConfiguration object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfiguration post(@jakarta.annotation.Nonnull final DeviceConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -111,7 +111,7 @@ public DeviceConfiguration post(@jakarta.annotation.Nonnull final DeviceConfigur
return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfiguration::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the macOSDeviceFeaturesConfiguration objects.
+ * List properties and relationships of the windows10CustomConfiguration objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -119,7 +119,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the macOSDeviceFeaturesConfiguration objects.
+ * List properties and relationships of the windows10CustomConfiguration objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -131,7 +131,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Create a new windowsPhone81GeneralConfiguration object.
+ * Create a new macOSCustomConfiguration object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -140,7 +140,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Create a new windowsPhone81GeneralConfiguration object.
+ * Create a new macOSCustomConfiguration object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -165,7 +165,7 @@ public DeviceConfigurationsRequestBuilder withUrl(@jakarta.annotation.Nonnull fi
return new DeviceConfigurationsRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the macOSDeviceFeaturesConfiguration objects.
+ * List properties and relationships of the windows10CustomConfiguration objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/DeviceConfigurationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/DeviceConfigurationItemRequestBuilder.java
index 0de692deaa6..cbf5ab4f620 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/DeviceConfigurationItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/DeviceConfigurationItemRequestBuilder.java
@@ -101,18 +101,18 @@ public DeviceConfigurationItemRequestBuilder(@jakarta.annotation.Nonnull final S
super(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}{?%24expand,%24select}", rawUrl);
}
/**
- * Deletes a iosCustomConfiguration.
+ * Deletes a windows10GeneralConfiguration.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
}
/**
- * Deletes a iosCustomConfiguration.
+ * Deletes a windows10GeneralConfiguration.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -121,21 +121,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the windows10GeneralConfiguration object.
+ * Read properties and relationships of the iosCertificateProfile object.
* @return a {@link DeviceConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfiguration get() {
return get(null);
}
/**
- * Read properties and relationships of the windows10GeneralConfiguration object.
+ * Read properties and relationships of the iosCertificateProfile object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -155,23 +155,23 @@ public GetOmaSettingPlainTextValueWithSecretReferenceValueIdRequestBuilder getOm
return new GetOmaSettingPlainTextValueWithSecretReferenceValueIdRequestBuilder(pathParameters, requestAdapter, secretReferenceValueId);
}
/**
- * Update the properties of a windowsDefenderAdvancedThreatProtectionConfiguration object.
+ * Update the properties of a windowsUpdateForBusinessConfiguration object.
* @param body The request body
* @return a {@link DeviceConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfiguration patch(@jakarta.annotation.Nonnull final DeviceConfiguration body) {
return patch(body, null);
}
/**
- * Update the properties of a windowsDefenderAdvancedThreatProtectionConfiguration object.
+ * Update the properties of a windowsUpdateForBusinessConfiguration object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfiguration patch(@jakarta.annotation.Nonnull final DeviceConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -182,7 +182,7 @@ public DeviceConfiguration patch(@jakarta.annotation.Nonnull final DeviceConfigu
return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfiguration::createFromDiscriminatorValue);
}
/**
- * Deletes a iosCustomConfiguration.
+ * Deletes a windows10GeneralConfiguration.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -190,7 +190,7 @@ public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
- * Deletes a iosCustomConfiguration.
+ * Deletes a windows10GeneralConfiguration.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -202,7 +202,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the windows10GeneralConfiguration object.
+ * Read properties and relationships of the iosCertificateProfile object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -210,7 +210,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the windows10GeneralConfiguration object.
+ * Read properties and relationships of the iosCertificateProfile object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -222,7 +222,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the properties of a windowsDefenderAdvancedThreatProtectionConfiguration object.
+ * Update the properties of a windowsUpdateForBusinessConfiguration object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -231,7 +231,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Update the properties of a windowsDefenderAdvancedThreatProtectionConfiguration object.
+ * Update the properties of a windowsUpdateForBusinessConfiguration object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -262,7 +262,7 @@ public DeviceConfigurationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the windows10GeneralConfiguration object.
+ * Read properties and relationships of the iosCertificateProfile object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/DeviceEnrollmentConfigurationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/DeviceEnrollmentConfigurationsRequestBuilder.java
index db59a22b86f..e900260da4b 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/DeviceEnrollmentConfigurationsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/DeviceEnrollmentConfigurationsRequestBuilder.java
@@ -84,23 +84,23 @@ public DeviceEnrollmentConfigurationCollectionResponse get(@jakarta.annotation.N
return this.requestAdapter.send(requestInfo, errorMapping, DeviceEnrollmentConfigurationCollectionResponse::createFromDiscriminatorValue);
}
/**
- * Create a new deviceEnrollmentPlatformRestrictionsConfiguration object.
+ * Create a new deviceEnrollmentLimitConfiguration object.
* @param body The request body
* @return a {@link DeviceEnrollmentConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceEnrollmentConfiguration post(@jakarta.annotation.Nonnull final DeviceEnrollmentConfiguration body) {
return post(body, null);
}
/**
- * Create a new deviceEnrollmentPlatformRestrictionsConfiguration object.
+ * Create a new deviceEnrollmentLimitConfiguration object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceEnrollmentConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceEnrollmentConfiguration post(@jakarta.annotation.Nonnull final DeviceEnrollmentConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -131,7 +131,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Create a new deviceEnrollmentPlatformRestrictionsConfiguration object.
+ * Create a new deviceEnrollmentLimitConfiguration object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -140,7 +140,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Create a new deviceEnrollmentPlatformRestrictionsConfiguration object.
+ * Create a new deviceEnrollmentLimitConfiguration object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/DeviceEnrollmentConfigurationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/DeviceEnrollmentConfigurationItemRequestBuilder.java
index a93d041c327..33fe9046ccc 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/DeviceEnrollmentConfigurationItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/DeviceEnrollmentConfigurationItemRequestBuilder.java
@@ -64,18 +64,18 @@ public DeviceEnrollmentConfigurationItemRequestBuilder(@jakarta.annotation.Nonnu
super(requestAdapter, "{+baseurl}/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration%2Did}{?%24expand,%24select}", rawUrl);
}
/**
- * Deletes a deviceEnrollmentPlatformRestrictionsConfiguration.
+ * Deletes a deviceEnrollmentLimitConfiguration.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
}
/**
- * Deletes a deviceEnrollmentPlatformRestrictionsConfiguration.
+ * Deletes a deviceEnrollmentLimitConfiguration.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -84,21 +84,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the deviceEnrollmentLimitConfiguration object.
+ * Read properties and relationships of the deviceEnrollmentConfiguration object.
* @return a {@link DeviceEnrollmentConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceEnrollmentConfiguration get() {
return get(null);
}
/**
- * Read properties and relationships of the deviceEnrollmentLimitConfiguration object.
+ * Read properties and relationships of the deviceEnrollmentConfiguration object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceEnrollmentConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceEnrollmentConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -135,7 +135,7 @@ public DeviceEnrollmentConfiguration patch(@jakarta.annotation.Nonnull final Dev
return this.requestAdapter.send(requestInfo, errorMapping, DeviceEnrollmentConfiguration::createFromDiscriminatorValue);
}
/**
- * Deletes a deviceEnrollmentPlatformRestrictionsConfiguration.
+ * Deletes a deviceEnrollmentLimitConfiguration.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -143,7 +143,7 @@ public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
- * Deletes a deviceEnrollmentPlatformRestrictionsConfiguration.
+ * Deletes a deviceEnrollmentLimitConfiguration.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -155,7 +155,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the deviceEnrollmentLimitConfiguration object.
+ * Read properties and relationships of the deviceEnrollmentConfiguration object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -163,7 +163,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the deviceEnrollmentLimitConfiguration object.
+ * Read properties and relationships of the deviceEnrollmentConfiguration object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -215,7 +215,7 @@ public DeviceEnrollmentConfigurationItemRequestBuilder withUrl(@jakarta.annotati
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the deviceEnrollmentLimitConfiguration object.
+ * Read properties and relationships of the deviceEnrollmentConfiguration object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/RoleDefinitionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/RoleDefinitionsRequestBuilder.java
index 79c71a4aff3..8d4d1eeb90a 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/RoleDefinitionsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/RoleDefinitionsRequestBuilder.java
@@ -60,21 +60,21 @@ public RoleDefinitionsRequestBuilder(@jakarta.annotation.Nonnull final String ra
super(requestAdapter, "{+baseurl}/deviceManagement/roleDefinitions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the deviceAndAppManagementRoleDefinition objects.
+ * List properties and relationships of the roleDefinition objects.
* @return a {@link RoleDefinitionCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public RoleDefinitionCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the deviceAndAppManagementRoleDefinition objects.
+ * List properties and relationships of the roleDefinition objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RoleDefinitionCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public RoleDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -84,23 +84,23 @@ public RoleDefinitionCollectionResponse get(@jakarta.annotation.Nullable final j
return this.requestAdapter.send(requestInfo, errorMapping, RoleDefinitionCollectionResponse::createFromDiscriminatorValue);
}
/**
- * Create a new deviceAndAppManagementRoleDefinition object.
+ * Create a new roleDefinition object.
* @param body The request body
* @return a {@link RoleDefinition}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public RoleDefinition post(@jakarta.annotation.Nonnull final RoleDefinition body) {
return post(body, null);
}
/**
- * Create a new deviceAndAppManagementRoleDefinition object.
+ * Create a new roleDefinition object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RoleDefinition}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public RoleDefinition post(@jakarta.annotation.Nonnull final RoleDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -111,7 +111,7 @@ public RoleDefinition post(@jakarta.annotation.Nonnull final RoleDefinition body
return this.requestAdapter.send(requestInfo, errorMapping, RoleDefinition::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the deviceAndAppManagementRoleDefinition objects.
+ * List properties and relationships of the roleDefinition objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -119,7 +119,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the deviceAndAppManagementRoleDefinition objects.
+ * List properties and relationships of the roleDefinition objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -131,7 +131,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Create a new deviceAndAppManagementRoleDefinition object.
+ * Create a new roleDefinition object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -140,7 +140,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Create a new deviceAndAppManagementRoleDefinition object.
+ * Create a new roleDefinition object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -165,7 +165,7 @@ public RoleDefinitionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S
return new RoleDefinitionsRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the deviceAndAppManagementRoleDefinition objects.
+ * List properties and relationships of the roleDefinition objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/RoleDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/RoleDefinitionItemRequestBuilder.java
index 4945fe89109..c2f77069fac 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/RoleDefinitionItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/RoleDefinitionItemRequestBuilder.java
@@ -66,21 +66,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the roleDefinition object.
+ * Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
* @return a {@link RoleDefinition}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public RoleDefinition get() {
return get(null);
}
/**
- * Read properties and relationships of the roleDefinition object.
+ * Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RoleDefinition}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public RoleDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -90,23 +90,23 @@ public RoleDefinition get(@jakarta.annotation.Nullable final java.util.function.
return this.requestAdapter.send(requestInfo, errorMapping, RoleDefinition::createFromDiscriminatorValue);
}
/**
- * Update the properties of a deviceAndAppManagementRoleDefinition object.
+ * Update the properties of a roleDefinition object.
* @param body The request body
* @return a {@link RoleDefinition}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public RoleDefinition patch(@jakarta.annotation.Nonnull final RoleDefinition body) {
return patch(body, null);
}
/**
- * Update the properties of a deviceAndAppManagementRoleDefinition object.
+ * Update the properties of a roleDefinition object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RoleDefinition}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public RoleDefinition patch(@jakarta.annotation.Nonnull final RoleDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -137,7 +137,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the roleDefinition object.
+ * Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -145,7 +145,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the roleDefinition object.
+ * Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -157,7 +157,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the properties of a deviceAndAppManagementRoleDefinition object.
+ * Update the properties of a roleDefinition object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -166,7 +166,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Update the properties of a deviceAndAppManagementRoleDefinition object.
+ * Update the properties of a roleDefinition object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -197,7 +197,7 @@ public RoleDefinitionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the roleDefinition object.
+ * Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/DeviceLocalCredentialsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/DeviceLocalCredentialsRequestBuilder.java
index b444ad1ab98..341b14d004a 100644
--- a/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/DeviceLocalCredentialsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/DeviceLocalCredentialsRequestBuilder.java
@@ -49,7 +49,7 @@ public DeviceLocalCredentialInfoItemRequestBuilder byDeviceLocalCredentialInfoId
* @param requestAdapter The request adapter to use to execute the requests.
*/
public DeviceLocalCredentialsRequestBuilder(@jakarta.annotation.Nonnull final HashMap pathParameters, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
- super(requestAdapter, "{+baseurl}/directory/deviceLocalCredentials{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", pathParameters);
+ super(requestAdapter, "{+baseurl}/directory/deviceLocalCredentials{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", pathParameters);
}
/**
* Instantiates a new {@link DeviceLocalCredentialsRequestBuilder} and sets the default values.
@@ -57,7 +57,7 @@ public DeviceLocalCredentialsRequestBuilder(@jakarta.annotation.Nonnull final Ha
* @param requestAdapter The request adapter to use to execute the requests.
*/
public DeviceLocalCredentialsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
- super(requestAdapter, "{+baseurl}/directory/deviceLocalCredentials{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
+ super(requestAdapter, "{+baseurl}/directory/deviceLocalCredentials{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
* Get a list of the deviceLocalCredentialInfo objects and their properties, excluding the credentials property.
@@ -172,6 +172,11 @@ public class GetQueryParameters implements QueryParameters {
*/
@jakarta.annotation.Nullable
public Boolean count;
+ /**
+ * Expand related entities
+ */
+ @jakarta.annotation.Nullable
+ public String[] expand;
/**
* Filter items by property values
*/
@@ -214,6 +219,7 @@ public Map toQueryParameters() {
allQueryParams.put("%24search", search);
allQueryParams.put("%24skip", skip);
allQueryParams.put("%24top", top);
+ allQueryParams.put("%24expand", expand);
allQueryParams.put("%24orderby", orderby);
allQueryParams.put("%24select", select);
return allQueryParams;
diff --git a/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/item/DeviceLocalCredentialInfoItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/item/DeviceLocalCredentialInfoItemRequestBuilder.java
index 7c1e5f4dbcb..9ca9c0cfcbc 100644
--- a/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/item/DeviceLocalCredentialInfoItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/item/DeviceLocalCredentialInfoItemRequestBuilder.java
@@ -26,7 +26,7 @@ public class DeviceLocalCredentialInfoItemRequestBuilder extends BaseRequestBuil
* @param requestAdapter The request adapter to use to execute the requests.
*/
public DeviceLocalCredentialInfoItemRequestBuilder(@jakarta.annotation.Nonnull final HashMap pathParameters, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
- super(requestAdapter, "{+baseurl}/directory/deviceLocalCredentials/{deviceLocalCredentialInfo%2Did}{?%24select}", pathParameters);
+ super(requestAdapter, "{+baseurl}/directory/deviceLocalCredentials/{deviceLocalCredentialInfo%2Did}{?%24expand,%24select}", pathParameters);
}
/**
* Instantiates a new {@link DeviceLocalCredentialInfoItemRequestBuilder} and sets the default values.
@@ -34,7 +34,7 @@ public DeviceLocalCredentialInfoItemRequestBuilder(@jakarta.annotation.Nonnull f
* @param requestAdapter The request adapter to use to execute the requests.
*/
public DeviceLocalCredentialInfoItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
- super(requestAdapter, "{+baseurl}/directory/deviceLocalCredentials/{deviceLocalCredentialInfo%2Did}{?%24select}", rawUrl);
+ super(requestAdapter, "{+baseurl}/directory/deviceLocalCredentials/{deviceLocalCredentialInfo%2Did}{?%24expand,%24select}", rawUrl);
}
/**
* Delete navigation property deviceLocalCredentials for directory
@@ -188,6 +188,11 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration {
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
+ /**
+ * Expand related entities
+ */
+ @jakarta.annotation.Nullable
+ public String[] expand;
/**
* Select properties to be returned
*/
@@ -200,6 +205,7 @@ public class GetQueryParameters implements QueryParameters {
@jakarta.annotation.Nonnull
public Map toQueryParameters() {
final Map allQueryParams = new HashMap();
+ allQueryParams.put("%24expand", expand);
allQueryParams.put("%24select", select);
return allQueryParams;
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/analytics/alltime/AllTimeRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/analytics/alltime/AllTimeRequestBuilder.java
index 02a0c3dbc85..8ae1dc534f1 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/analytics/alltime/AllTimeRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/analytics/alltime/AllTimeRequestBuilder.java
@@ -37,19 +37,21 @@ public AllTimeRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j
super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/analytics/allTime{?%24expand,%24select}", rawUrl);
}
/**
- * Get allTime from drives
+ * Get itemAnalytics about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the getActivitiesByInterval API.
* @return a {@link ItemActivityStat}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ItemActivityStat get() {
return get(null);
}
/**
- * Get allTime from drives
+ * Get itemAnalytics about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the getActivitiesByInterval API.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ItemActivityStat}
* @throws ODataError When receiving a 4XX or 5XX status code
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ItemActivityStat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -59,7 +61,7 @@ public ItemActivityStat get(@jakarta.annotation.Nullable final java.util.functio
return this.requestAdapter.send(requestInfo, errorMapping, ItemActivityStat::createFromDiscriminatorValue);
}
/**
- * Get allTime from drives
+ * Get itemAnalytics about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the getActivitiesByInterval API.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -67,7 +69,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Get allTime from drives
+ * Get itemAnalytics about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the getActivitiesByInterval API.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -89,7 +91,7 @@ public AllTimeRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra
return new AllTimeRequestBuilder(rawUrl, requestAdapter);
}
/**
- * Get allTime from drives
+ * Get itemAnalytics about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the getActivitiesByInterval API.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/retentionlabel/RetentionLabelRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/retentionlabel/RetentionLabelRequestBuilder.java
index e2d7e4eef05..195bf3fca2a 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/retentionlabel/RetentionLabelRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/retentionlabel/RetentionLabelRequestBuilder.java
@@ -79,23 +79,23 @@ public ItemRetentionLabel get(@jakarta.annotation.Nullable final java.util.funct
return this.requestAdapter.send(requestInfo, errorMapping, ItemRetentionLabel::createFromDiscriminatorValue);
}
/**
- * Apply (set) a retention label on a driveItem (files and folders). Retention labels don't need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.
+ * Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.
* @param body The request body
* @return a {@link ItemRetentionLabel}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ItemRetentionLabel patch(@jakarta.annotation.Nonnull final ItemRetentionLabel body) {
return patch(body, null);
}
/**
- * Apply (set) a retention label on a driveItem (files and folders). Retention labels don't need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.
+ * Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ItemRetentionLabel}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ItemRetentionLabel patch(@jakarta.annotation.Nonnull final ItemRetentionLabel body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -146,7 +146,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Apply (set) a retention label on a driveItem (files and folders). Retention labels don't need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.
+ * Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -155,7 +155,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Apply (set) a retention label on a driveItem (files and folders). Retention labels don't need to be published in a retention label policy to be applied using this method. When a retention label is applied to a folder, all the items in the folder are tagged with the same retention label. For information about conflict resolution for retention labels, see Will an existing label be overridden or removed. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint.
+ * Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/abs/AbsPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/abs/AbsPostRequestBody.java
index fab4623b67e..8b6bd3e9468 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/abs/AbsPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/abs/AbsPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.abs;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/accrint/AccrIntPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/accrint/AccrIntPostRequestBody.java
index da30ad4565b..5ba02874282 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/accrint/AccrIntPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/accrint/AccrIntPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.accrint;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -58,18 +57,18 @@ public BackingStore getBackingStore() {
}
/**
* Gets the basis property value. The basis property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getBasis() {
+ public UntypedNode getBasis() {
return this.backingStore.get("basis");
}
/**
* Gets the calcMethod property value. The calcMethod property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getCalcMethod() {
+ public UntypedNode getCalcMethod() {
return this.backingStore.get("calcMethod");
}
/**
@@ -79,62 +78,62 @@ public Json getCalcMethod() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(8);
- deserializerMap.put("basis", (n) -> { this.setBasis(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("calcMethod", (n) -> { this.setCalcMethod(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("firstInterest", (n) -> { this.setFirstInterest(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("frequency", (n) -> { this.setFrequency(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("issue", (n) -> { this.setIssue(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("par", (n) -> { this.setPar(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("rate", (n) -> { this.setRate(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("settlement", (n) -> { this.setSettlement(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("basis", (n) -> { this.setBasis(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("calcMethod", (n) -> { this.setCalcMethod(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("firstInterest", (n) -> { this.setFirstInterest(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("frequency", (n) -> { this.setFrequency(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("issue", (n) -> { this.setIssue(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("par", (n) -> { this.setPar(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("rate", (n) -> { this.setRate(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("settlement", (n) -> { this.setSettlement(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the firstInterest property value. The firstInterest property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getFirstInterest() {
+ public UntypedNode getFirstInterest() {
return this.backingStore.get("firstInterest");
}
/**
* Gets the frequency property value. The frequency property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getFrequency() {
+ public UntypedNode getFrequency() {
return this.backingStore.get("frequency");
}
/**
* Gets the issue property value. The issue property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getIssue() {
+ public UntypedNode getIssue() {
return this.backingStore.get("issue");
}
/**
* Gets the par property value. The par property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getPar() {
+ public UntypedNode getPar() {
return this.backingStore.get("par");
}
/**
* Gets the rate property value. The rate property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getRate() {
+ public UntypedNode getRate() {
return this.backingStore.get("rate");
}
/**
* Gets the settlement property value. The settlement property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getSettlement() {
+ public UntypedNode getSettlement() {
return this.backingStore.get("settlement");
}
/**
@@ -172,56 +171,56 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the basis property value. The basis property
* @param value Value to set for the basis property.
*/
- public void setBasis(@jakarta.annotation.Nullable final Json value) {
+ public void setBasis(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("basis", value);
}
/**
* Sets the calcMethod property value. The calcMethod property
* @param value Value to set for the calcMethod property.
*/
- public void setCalcMethod(@jakarta.annotation.Nullable final Json value) {
+ public void setCalcMethod(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("calcMethod", value);
}
/**
* Sets the firstInterest property value. The firstInterest property
* @param value Value to set for the firstInterest property.
*/
- public void setFirstInterest(@jakarta.annotation.Nullable final Json value) {
+ public void setFirstInterest(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("firstInterest", value);
}
/**
* Sets the frequency property value. The frequency property
* @param value Value to set for the frequency property.
*/
- public void setFrequency(@jakarta.annotation.Nullable final Json value) {
+ public void setFrequency(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("frequency", value);
}
/**
* Sets the issue property value. The issue property
* @param value Value to set for the issue property.
*/
- public void setIssue(@jakarta.annotation.Nullable final Json value) {
+ public void setIssue(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("issue", value);
}
/**
* Sets the par property value. The par property
* @param value Value to set for the par property.
*/
- public void setPar(@jakarta.annotation.Nullable final Json value) {
+ public void setPar(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("par", value);
}
/**
* Sets the rate property value. The rate property
* @param value Value to set for the rate property.
*/
- public void setRate(@jakarta.annotation.Nullable final Json value) {
+ public void setRate(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("rate", value);
}
/**
* Sets the settlement property value. The settlement property
* @param value Value to set for the settlement property.
*/
- public void setSettlement(@jakarta.annotation.Nullable final Json value) {
+ public void setSettlement(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("settlement", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/accrintm/AccrIntMPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/accrintm/AccrIntMPostRequestBody.java
index c5b46d9ec49..04bd6cf118a 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/accrintm/AccrIntMPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/accrintm/AccrIntMPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.accrintm;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -58,10 +57,10 @@ public BackingStore getBackingStore() {
}
/**
* Gets the basis property value. The basis property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getBasis() {
+ public UntypedNode getBasis() {
return this.backingStore.get("basis");
}
/**
@@ -71,43 +70,43 @@ public Json getBasis() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(5);
- deserializerMap.put("basis", (n) -> { this.setBasis(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("issue", (n) -> { this.setIssue(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("par", (n) -> { this.setPar(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("rate", (n) -> { this.setRate(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("settlement", (n) -> { this.setSettlement(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("basis", (n) -> { this.setBasis(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("issue", (n) -> { this.setIssue(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("par", (n) -> { this.setPar(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("rate", (n) -> { this.setRate(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("settlement", (n) -> { this.setSettlement(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the issue property value. The issue property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getIssue() {
+ public UntypedNode getIssue() {
return this.backingStore.get("issue");
}
/**
* Gets the par property value. The par property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getPar() {
+ public UntypedNode getPar() {
return this.backingStore.get("par");
}
/**
* Gets the rate property value. The rate property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getRate() {
+ public UntypedNode getRate() {
return this.backingStore.get("rate");
}
/**
* Gets the settlement property value. The settlement property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getSettlement() {
+ public UntypedNode getSettlement() {
return this.backingStore.get("settlement");
}
/**
@@ -142,35 +141,35 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the basis property value. The basis property
* @param value Value to set for the basis property.
*/
- public void setBasis(@jakarta.annotation.Nullable final Json value) {
+ public void setBasis(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("basis", value);
}
/**
* Sets the issue property value. The issue property
* @param value Value to set for the issue property.
*/
- public void setIssue(@jakarta.annotation.Nullable final Json value) {
+ public void setIssue(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("issue", value);
}
/**
* Sets the par property value. The par property
* @param value Value to set for the par property.
*/
- public void setPar(@jakarta.annotation.Nullable final Json value) {
+ public void setPar(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("par", value);
}
/**
* Sets the rate property value. The rate property
* @param value Value to set for the rate property.
*/
- public void setRate(@jakarta.annotation.Nullable final Json value) {
+ public void setRate(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("rate", value);
}
/**
* Sets the settlement property value. The settlement property
* @param value Value to set for the settlement property.
*/
- public void setSettlement(@jakarta.annotation.Nullable final Json value) {
+ public void setSettlement(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("settlement", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acos/AcosPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acos/AcosPostRequestBody.java
index e0351bf8668..ef533de691c 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acos/AcosPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acos/AcosPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.acos;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acosh/AcoshPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acosh/AcoshPostRequestBody.java
index 1a09171bc87..d1413c2505d 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acosh/AcoshPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acosh/AcoshPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.acosh;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acot/AcotPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acot/AcotPostRequestBody.java
index 3d27365eaa4..31a8842de4d 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acot/AcotPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acot/AcotPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.acot;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acoth/AcothPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acoth/AcothPostRequestBody.java
index c35a06dffec..74dac1e7929 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acoth/AcothPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/acoth/AcothPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.acoth;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/amordegrc/AmorDegrcPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/amordegrc/AmorDegrcPostRequestBody.java
index 07ecf3dc554..8d3719c946b 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/amordegrc/AmorDegrcPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/amordegrc/AmorDegrcPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.amordegrc;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -58,26 +57,26 @@ public BackingStore getBackingStore() {
}
/**
* Gets the basis property value. The basis property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getBasis() {
+ public UntypedNode getBasis() {
return this.backingStore.get("basis");
}
/**
* Gets the cost property value. The cost property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getCost() {
+ public UntypedNode getCost() {
return this.backingStore.get("cost");
}
/**
* Gets the datePurchased property value. The datePurchased property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getDatePurchased() {
+ public UntypedNode getDatePurchased() {
return this.backingStore.get("datePurchased");
}
/**
@@ -87,45 +86,45 @@ public Json getDatePurchased() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(7);
- deserializerMap.put("basis", (n) -> { this.setBasis(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("cost", (n) -> { this.setCost(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("datePurchased", (n) -> { this.setDatePurchased(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("firstPeriod", (n) -> { this.setFirstPeriod(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("period", (n) -> { this.setPeriod(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("rate", (n) -> { this.setRate(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("salvage", (n) -> { this.setSalvage(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("basis", (n) -> { this.setBasis(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("cost", (n) -> { this.setCost(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("datePurchased", (n) -> { this.setDatePurchased(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("firstPeriod", (n) -> { this.setFirstPeriod(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("period", (n) -> { this.setPeriod(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("rate", (n) -> { this.setRate(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("salvage", (n) -> { this.setSalvage(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the firstPeriod property value. The firstPeriod property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getFirstPeriod() {
+ public UntypedNode getFirstPeriod() {
return this.backingStore.get("firstPeriod");
}
/**
* Gets the period property value. The period property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getPeriod() {
+ public UntypedNode getPeriod() {
return this.backingStore.get("period");
}
/**
* Gets the rate property value. The rate property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getRate() {
+ public UntypedNode getRate() {
return this.backingStore.get("rate");
}
/**
* Gets the salvage property value. The salvage property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getSalvage() {
+ public UntypedNode getSalvage() {
return this.backingStore.get("salvage");
}
/**
@@ -162,49 +161,49 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the basis property value. The basis property
* @param value Value to set for the basis property.
*/
- public void setBasis(@jakarta.annotation.Nullable final Json value) {
+ public void setBasis(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("basis", value);
}
/**
* Sets the cost property value. The cost property
* @param value Value to set for the cost property.
*/
- public void setCost(@jakarta.annotation.Nullable final Json value) {
+ public void setCost(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("cost", value);
}
/**
* Sets the datePurchased property value. The datePurchased property
* @param value Value to set for the datePurchased property.
*/
- public void setDatePurchased(@jakarta.annotation.Nullable final Json value) {
+ public void setDatePurchased(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("datePurchased", value);
}
/**
* Sets the firstPeriod property value. The firstPeriod property
* @param value Value to set for the firstPeriod property.
*/
- public void setFirstPeriod(@jakarta.annotation.Nullable final Json value) {
+ public void setFirstPeriod(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("firstPeriod", value);
}
/**
* Sets the period property value. The period property
* @param value Value to set for the period property.
*/
- public void setPeriod(@jakarta.annotation.Nullable final Json value) {
+ public void setPeriod(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("period", value);
}
/**
* Sets the rate property value. The rate property
* @param value Value to set for the rate property.
*/
- public void setRate(@jakarta.annotation.Nullable final Json value) {
+ public void setRate(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("rate", value);
}
/**
* Sets the salvage property value. The salvage property
* @param value Value to set for the salvage property.
*/
- public void setSalvage(@jakarta.annotation.Nullable final Json value) {
+ public void setSalvage(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("salvage", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/amorlinc/AmorLincPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/amorlinc/AmorLincPostRequestBody.java
index 9acff58cc16..f0ff927d878 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/amorlinc/AmorLincPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/amorlinc/AmorLincPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.amorlinc;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -58,26 +57,26 @@ public BackingStore getBackingStore() {
}
/**
* Gets the basis property value. The basis property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getBasis() {
+ public UntypedNode getBasis() {
return this.backingStore.get("basis");
}
/**
* Gets the cost property value. The cost property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getCost() {
+ public UntypedNode getCost() {
return this.backingStore.get("cost");
}
/**
* Gets the datePurchased property value. The datePurchased property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getDatePurchased() {
+ public UntypedNode getDatePurchased() {
return this.backingStore.get("datePurchased");
}
/**
@@ -87,45 +86,45 @@ public Json getDatePurchased() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(7);
- deserializerMap.put("basis", (n) -> { this.setBasis(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("cost", (n) -> { this.setCost(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("datePurchased", (n) -> { this.setDatePurchased(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("firstPeriod", (n) -> { this.setFirstPeriod(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("period", (n) -> { this.setPeriod(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("rate", (n) -> { this.setRate(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("salvage", (n) -> { this.setSalvage(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("basis", (n) -> { this.setBasis(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("cost", (n) -> { this.setCost(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("datePurchased", (n) -> { this.setDatePurchased(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("firstPeriod", (n) -> { this.setFirstPeriod(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("period", (n) -> { this.setPeriod(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("rate", (n) -> { this.setRate(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("salvage", (n) -> { this.setSalvage(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the firstPeriod property value. The firstPeriod property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getFirstPeriod() {
+ public UntypedNode getFirstPeriod() {
return this.backingStore.get("firstPeriod");
}
/**
* Gets the period property value. The period property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getPeriod() {
+ public UntypedNode getPeriod() {
return this.backingStore.get("period");
}
/**
* Gets the rate property value. The rate property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getRate() {
+ public UntypedNode getRate() {
return this.backingStore.get("rate");
}
/**
* Gets the salvage property value. The salvage property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getSalvage() {
+ public UntypedNode getSalvage() {
return this.backingStore.get("salvage");
}
/**
@@ -162,49 +161,49 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the basis property value. The basis property
* @param value Value to set for the basis property.
*/
- public void setBasis(@jakarta.annotation.Nullable final Json value) {
+ public void setBasis(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("basis", value);
}
/**
* Sets the cost property value. The cost property
* @param value Value to set for the cost property.
*/
- public void setCost(@jakarta.annotation.Nullable final Json value) {
+ public void setCost(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("cost", value);
}
/**
* Sets the datePurchased property value. The datePurchased property
* @param value Value to set for the datePurchased property.
*/
- public void setDatePurchased(@jakarta.annotation.Nullable final Json value) {
+ public void setDatePurchased(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("datePurchased", value);
}
/**
* Sets the firstPeriod property value. The firstPeriod property
* @param value Value to set for the firstPeriod property.
*/
- public void setFirstPeriod(@jakarta.annotation.Nullable final Json value) {
+ public void setFirstPeriod(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("firstPeriod", value);
}
/**
* Sets the period property value. The period property
* @param value Value to set for the period property.
*/
- public void setPeriod(@jakarta.annotation.Nullable final Json value) {
+ public void setPeriod(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("period", value);
}
/**
* Sets the rate property value. The rate property
* @param value Value to set for the rate property.
*/
- public void setRate(@jakarta.annotation.Nullable final Json value) {
+ public void setRate(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("rate", value);
}
/**
* Sets the salvage property value. The salvage property
* @param value Value to set for the salvage property.
*/
- public void setSalvage(@jakarta.annotation.Nullable final Json value) {
+ public void setSalvage(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("salvage", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/and/AndPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/and/AndPostRequestBody.java
index 019d6018b70..3dfa724eef9 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/and/AndPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/and/AndPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.and;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("values", (n) -> { this.setValues(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("values", (n) -> { this.setValues(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the values property value. The values property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getValues() {
+ public UntypedNode getValues() {
return this.backingStore.get("values");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the values property value. The values property
* @param value Value to set for the values property.
*/
- public void setValues(@jakarta.annotation.Nullable final Json value) {
+ public void setValues(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("values", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/arabic/ArabicPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/arabic/ArabicPostRequestBody.java
index 2f37b73d7e2..f3969c2bf5c 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/arabic/ArabicPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/arabic/ArabicPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.arabic;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("text", (n) -> { this.setText(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("text", (n) -> { this.setText(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the text property value. The text property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getText() {
+ public UntypedNode getText() {
return this.backingStore.get("text");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the text property value. The text property
* @param value Value to set for the text property.
*/
- public void setText(@jakarta.annotation.Nullable final Json value) {
+ public void setText(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("text", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/areas/AreasPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/areas/AreasPostRequestBody.java
index 6941bf84a84..cb0c8c41c90 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/areas/AreasPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/areas/AreasPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.areas;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("reference", (n) -> { this.setReference(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("reference", (n) -> { this.setReference(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the reference property value. The reference property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getReference() {
+ public UntypedNode getReference() {
return this.backingStore.get("reference");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the reference property value. The reference property
* @param value Value to set for the reference property.
*/
- public void setReference(@jakarta.annotation.Nullable final Json value) {
+ public void setReference(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("reference", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/asc/AscPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/asc/AscPostRequestBody.java
index 3bd81ed1f39..68fa1952497 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/asc/AscPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/asc/AscPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.asc;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("text", (n) -> { this.setText(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("text", (n) -> { this.setText(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the text property value. The text property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getText() {
+ public UntypedNode getText() {
return this.backingStore.get("text");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the text property value. The text property
* @param value Value to set for the text property.
*/
- public void setText(@jakarta.annotation.Nullable final Json value) {
+ public void setText(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("text", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/asin/AsinPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/asin/AsinPostRequestBody.java
index 188c1d177c2..e41c86f58c9 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/asin/AsinPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/asin/AsinPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.asin;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/asinh/AsinhPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/asinh/AsinhPostRequestBody.java
index c3b272b9b02..8559a168876 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/asinh/AsinhPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/asinh/AsinhPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.asinh;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/atan/AtanPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/atan/AtanPostRequestBody.java
index 2d6d1ccf6a6..2ae60b098ce 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/atan/AtanPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/atan/AtanPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.atan;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/atan2/Atan2PostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/atan2/Atan2PostRequestBody.java
index bf314ae3832..8dd32e83a43 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/atan2/Atan2PostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/atan2/Atan2PostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.atan2;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,24 +62,24 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(2);
- deserializerMap.put("xNum", (n) -> { this.setXNum(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("yNum", (n) -> { this.setYNum(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("xNum", (n) -> { this.setXNum(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("yNum", (n) -> { this.setYNum(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the xNum property value. The xNum property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getXNum() {
+ public UntypedNode getXNum() {
return this.backingStore.get("xNum");
}
/**
* Gets the yNum property value. The yNum property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getYNum() {
+ public UntypedNode getYNum() {
return this.backingStore.get("yNum");
}
/**
@@ -112,14 +111,14 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the xNum property value. The xNum property
* @param value Value to set for the xNum property.
*/
- public void setXNum(@jakarta.annotation.Nullable final Json value) {
+ public void setXNum(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("xNum", value);
}
/**
* Sets the yNum property value. The yNum property
* @param value Value to set for the yNum property.
*/
- public void setYNum(@jakarta.annotation.Nullable final Json value) {
+ public void setYNum(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("yNum", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/atanh/AtanhPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/atanh/AtanhPostRequestBody.java
index a724afa80b3..1daa50814c7 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/atanh/AtanhPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/atanh/AtanhPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.atanh;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/avedev/AveDevPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/avedev/AveDevPostRequestBody.java
index 61c457c1e71..5b98712547d 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/avedev/AveDevPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/avedev/AveDevPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.avedev;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("values", (n) -> { this.setValues(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("values", (n) -> { this.setValues(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the values property value. The values property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getValues() {
+ public UntypedNode getValues() {
return this.backingStore.get("values");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the values property value. The values property
* @param value Value to set for the values property.
*/
- public void setValues(@jakarta.annotation.Nullable final Json value) {
+ public void setValues(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("values", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/average/AveragePostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/average/AveragePostRequestBody.java
index c2a33ba4210..0fc07975d1d 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/average/AveragePostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/average/AveragePostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.average;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("values", (n) -> { this.setValues(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("values", (n) -> { this.setValues(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the values property value. The values property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getValues() {
+ public UntypedNode getValues() {
return this.backingStore.get("values");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the values property value. The values property
* @param value Value to set for the values property.
*/
- public void setValues(@jakarta.annotation.Nullable final Json value) {
+ public void setValues(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("values", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/averagea/AverageAPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/averagea/AverageAPostRequestBody.java
index 6918e6776a4..cbe8d2d23c4 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/averagea/AverageAPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/averagea/AverageAPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.averagea;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("values", (n) -> { this.setValues(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("values", (n) -> { this.setValues(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the values property value. The values property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getValues() {
+ public UntypedNode getValues() {
return this.backingStore.get("values");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the values property value. The values property
* @param value Value to set for the values property.
*/
- public void setValues(@jakarta.annotation.Nullable final Json value) {
+ public void setValues(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("values", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/averageif/AverageIfPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/averageif/AverageIfPostRequestBody.java
index 0bcacac6600..9f3f4c4b501 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/averageif/AverageIfPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/averageif/AverageIfPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.averageif;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -50,10 +49,10 @@ public Map getAdditionalData() {
}
/**
* Gets the averageRange property value. The averageRange property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getAverageRange() {
+ public UntypedNode getAverageRange() {
return this.backingStore.get("averageRange");
}
/**
@@ -66,10 +65,10 @@ public BackingStore getBackingStore() {
}
/**
* Gets the criteria property value. The criteria property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getCriteria() {
+ public UntypedNode getCriteria() {
return this.backingStore.get("criteria");
}
/**
@@ -79,17 +78,17 @@ public Json getCriteria() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(3);
- deserializerMap.put("averageRange", (n) -> { this.setAverageRange(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("criteria", (n) -> { this.setCriteria(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("range", (n) -> { this.setRange(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("averageRange", (n) -> { this.setAverageRange(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("criteria", (n) -> { this.setCriteria(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("range", (n) -> { this.setRange(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the range property value. The range property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getRange() {
+ public UntypedNode getRange() {
return this.backingStore.get("range");
}
/**
@@ -114,7 +113,7 @@ public void setAdditionalData(@jakarta.annotation.Nullable final Map getAdditionalData() {
}
/**
* Gets the averageRange property value. The averageRange property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getAverageRange() {
+ public UntypedNode getAverageRange() {
return this.backingStore.get("averageRange");
}
/**
@@ -71,16 +70,16 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(2);
- deserializerMap.put("averageRange", (n) -> { this.setAverageRange(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("values", (n) -> { this.setValues(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("averageRange", (n) -> { this.setAverageRange(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("values", (n) -> { this.setValues(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the values property value. The values property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getValues() {
+ public UntypedNode getValues() {
return this.backingStore.get("values");
}
/**
@@ -104,7 +103,7 @@ public void setAdditionalData(@jakarta.annotation.Nullable final Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/base/BasePostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/base/BasePostRequestBody.java
index 51471c5aca2..e017cdb95d2 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/base/BasePostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/base/BasePostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.base;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,33 +62,33 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(3);
- deserializerMap.put("minLength", (n) -> { this.setMinLength(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("radix", (n) -> { this.setRadix(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("minLength", (n) -> { this.setMinLength(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("radix", (n) -> { this.setRadix(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the minLength property value. The minLength property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getMinLength() {
+ public UntypedNode getMinLength() {
return this.backingStore.get("minLength");
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
* Gets the radix property value. The radix property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getRadix() {
+ public UntypedNode getRadix() {
return this.backingStore.get("radix");
}
/**
@@ -122,21 +121,21 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the minLength property value. The minLength property
* @param value Value to set for the minLength property.
*/
- public void setMinLength(@jakarta.annotation.Nullable final Json value) {
+ public void setMinLength(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("minLength", value);
}
/**
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
/**
* Sets the radix property value. The radix property
* @param value Value to set for the radix property.
*/
- public void setRadix(@jakarta.annotation.Nullable final Json value) {
+ public void setRadix(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("radix", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/besseli/BesselIPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/besseli/BesselIPostRequestBody.java
index d4aa6bc4383..df115639f74 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/besseli/BesselIPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/besseli/BesselIPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.besseli;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,24 +62,24 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(2);
- deserializerMap.put("n", (n) -> { this.setN(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("x", (n) -> { this.setX(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("n", (n) -> { this.setN(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("x", (n) -> { this.setX(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the n property value. The n property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getN() {
+ public UntypedNode getN() {
return this.backingStore.get("n");
}
/**
* Gets the x property value. The x property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getX() {
+ public UntypedNode getX() {
return this.backingStore.get("x");
}
/**
@@ -112,14 +111,14 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the n property value. The n property
* @param value Value to set for the n property.
*/
- public void setN(@jakarta.annotation.Nullable final Json value) {
+ public void setN(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("n", value);
}
/**
* Sets the x property value. The x property
* @param value Value to set for the x property.
*/
- public void setX(@jakarta.annotation.Nullable final Json value) {
+ public void setX(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("x", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/besselj/BesselJPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/besselj/BesselJPostRequestBody.java
index c98e65b6309..19e3420bddf 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/besselj/BesselJPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/besselj/BesselJPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.besselj;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,24 +62,24 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(2);
- deserializerMap.put("n", (n) -> { this.setN(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("x", (n) -> { this.setX(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("n", (n) -> { this.setN(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("x", (n) -> { this.setX(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the n property value. The n property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getN() {
+ public UntypedNode getN() {
return this.backingStore.get("n");
}
/**
* Gets the x property value. The x property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getX() {
+ public UntypedNode getX() {
return this.backingStore.get("x");
}
/**
@@ -112,14 +111,14 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the n property value. The n property
* @param value Value to set for the n property.
*/
- public void setN(@jakarta.annotation.Nullable final Json value) {
+ public void setN(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("n", value);
}
/**
* Sets the x property value. The x property
* @param value Value to set for the x property.
*/
- public void setX(@jakarta.annotation.Nullable final Json value) {
+ public void setX(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("x", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/besselk/BesselKPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/besselk/BesselKPostRequestBody.java
index 0d59d080653..0e41022b56f 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/besselk/BesselKPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/besselk/BesselKPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.besselk;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,24 +62,24 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(2);
- deserializerMap.put("n", (n) -> { this.setN(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("x", (n) -> { this.setX(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("n", (n) -> { this.setN(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("x", (n) -> { this.setX(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the n property value. The n property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getN() {
+ public UntypedNode getN() {
return this.backingStore.get("n");
}
/**
* Gets the x property value. The x property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getX() {
+ public UntypedNode getX() {
return this.backingStore.get("x");
}
/**
@@ -112,14 +111,14 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the n property value. The n property
* @param value Value to set for the n property.
*/
- public void setN(@jakarta.annotation.Nullable final Json value) {
+ public void setN(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("n", value);
}
/**
* Sets the x property value. The x property
* @param value Value to set for the x property.
*/
- public void setX(@jakarta.annotation.Nullable final Json value) {
+ public void setX(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("x", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bessely/BesselYPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bessely/BesselYPostRequestBody.java
index 9e12cac23a4..c8d0c35616e 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bessely/BesselYPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bessely/BesselYPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.bessely;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,24 +62,24 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(2);
- deserializerMap.put("n", (n) -> { this.setN(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("x", (n) -> { this.setX(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("n", (n) -> { this.setN(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("x", (n) -> { this.setX(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the n property value. The n property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getN() {
+ public UntypedNode getN() {
return this.backingStore.get("n");
}
/**
* Gets the x property value. The x property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getX() {
+ public UntypedNode getX() {
return this.backingStore.get("x");
}
/**
@@ -112,14 +111,14 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the n property value. The n property
* @param value Value to set for the n property.
*/
- public void setN(@jakarta.annotation.Nullable final Json value) {
+ public void setN(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("n", value);
}
/**
* Sets the x property value. The x property
* @param value Value to set for the x property.
*/
- public void setX(@jakarta.annotation.Nullable final Json value) {
+ public void setX(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("x", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/beta_dist/BetaDistPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/beta_dist/BetaDistPostRequestBody.java
index d88680c0554..35eb7e9ddd0 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/beta_dist/BetaDistPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/beta_dist/BetaDistPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.beta_dist;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -37,10 +36,10 @@ public static BetaDistPostRequestBody createFromDiscriminatorValue(@jakarta.anno
}
/**
* Gets the A property value. The A property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getA() {
+ public UntypedNode getA() {
return this.backingStore.get("a");
}
/**
@@ -58,18 +57,18 @@ public Map getAdditionalData() {
}
/**
* Gets the alpha property value. The alpha property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getAlpha() {
+ public UntypedNode getAlpha() {
return this.backingStore.get("alpha");
}
/**
* Gets the B property value. The B property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getB() {
+ public UntypedNode getB() {
return this.backingStore.get("b");
}
/**
@@ -82,18 +81,18 @@ public BackingStore getBackingStore() {
}
/**
* Gets the beta property value. The beta property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getBeta() {
+ public UntypedNode getBeta() {
return this.backingStore.get("beta");
}
/**
* Gets the cumulative property value. The cumulative property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getCumulative() {
+ public UntypedNode getCumulative() {
return this.backingStore.get("cumulative");
}
/**
@@ -103,20 +102,20 @@ public Json getCumulative() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(6);
- deserializerMap.put("A", (n) -> { this.setA(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("alpha", (n) -> { this.setAlpha(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("B", (n) -> { this.setB(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("beta", (n) -> { this.setBeta(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("cumulative", (n) -> { this.setCumulative(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("x", (n) -> { this.setX(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("A", (n) -> { this.setA(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("alpha", (n) -> { this.setAlpha(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("B", (n) -> { this.setB(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("beta", (n) -> { this.setBeta(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("cumulative", (n) -> { this.setCumulative(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("x", (n) -> { this.setX(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the x property value. The x property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getX() {
+ public UntypedNode getX() {
return this.backingStore.get("x");
}
/**
@@ -137,7 +136,7 @@ public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writ
* Sets the A property value. The A property
* @param value Value to set for the A property.
*/
- public void setA(@jakarta.annotation.Nullable final Json value) {
+ public void setA(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("a", value);
}
/**
@@ -151,14 +150,14 @@ public void setAdditionalData(@jakarta.annotation.Nullable final Map getAdditionalData() {
}
/**
* Gets the alpha property value. The alpha property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getAlpha() {
+ public UntypedNode getAlpha() {
return this.backingStore.get("alpha");
}
/**
* Gets the B property value. The B property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getB() {
+ public UntypedNode getB() {
return this.backingStore.get("b");
}
/**
@@ -82,10 +81,10 @@ public BackingStore getBackingStore() {
}
/**
* Gets the beta property value. The beta property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getBeta() {
+ public UntypedNode getBeta() {
return this.backingStore.get("beta");
}
/**
@@ -95,19 +94,19 @@ public Json getBeta() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(5);
- deserializerMap.put("A", (n) -> { this.setA(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("alpha", (n) -> { this.setAlpha(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("B", (n) -> { this.setB(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("beta", (n) -> { this.setBeta(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("probability", (n) -> { this.setProbability(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("A", (n) -> { this.setA(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("alpha", (n) -> { this.setAlpha(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("B", (n) -> { this.setB(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("beta", (n) -> { this.setBeta(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("probability", (n) -> { this.setProbability(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the probability property value. The probability property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getProbability() {
+ public UntypedNode getProbability() {
return this.backingStore.get("probability");
}
/**
@@ -127,7 +126,7 @@ public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writ
* Sets the A property value. The A property
* @param value Value to set for the A property.
*/
- public void setA(@jakarta.annotation.Nullable final Json value) {
+ public void setA(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("a", value);
}
/**
@@ -141,14 +140,14 @@ public void setAdditionalData(@jakarta.annotation.Nullable final Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(1);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
@@ -102,7 +101,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bin2hex/Bin2HexPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bin2hex/Bin2HexPostRequestBody.java
index e1b068ab3ee..92fe5aae63e 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bin2hex/Bin2HexPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bin2hex/Bin2HexPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.bin2hex;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,24 +62,24 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(2);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("places", (n) -> { this.setPlaces(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("places", (n) -> { this.setPlaces(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
* Gets the places property value. The places property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getPlaces() {
+ public UntypedNode getPlaces() {
return this.backingStore.get("places");
}
/**
@@ -112,14 +111,14 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
/**
* Sets the places property value. The places property
* @param value Value to set for the places property.
*/
- public void setPlaces(@jakarta.annotation.Nullable final Json value) {
+ public void setPlaces(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("places", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bin2oct/Bin2OctPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bin2oct/Bin2OctPostRequestBody.java
index cd2cf4ac61e..fd5f7d642b9 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bin2oct/Bin2OctPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bin2oct/Bin2OctPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.bin2oct;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,24 +62,24 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(2);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("places", (n) -> { this.setPlaces(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("places", (n) -> { this.setPlaces(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
* Gets the places property value. The places property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getPlaces() {
+ public UntypedNode getPlaces() {
return this.backingStore.get("places");
}
/**
@@ -112,14 +111,14 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
/**
* Sets the places property value. The places property
* @param value Value to set for the places property.
*/
- public void setPlaces(@jakarta.annotation.Nullable final Json value) {
+ public void setPlaces(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("places", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/binom_dist/BinomDistPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/binom_dist/BinomDistPostRequestBody.java
index c4253f2647c..626074d0fa2 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/binom_dist/BinomDistPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/binom_dist/BinomDistPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.binom_dist;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -58,10 +57,10 @@ public BackingStore getBackingStore() {
}
/**
* Gets the cumulative property value. The cumulative property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getCumulative() {
+ public UntypedNode getCumulative() {
return this.backingStore.get("cumulative");
}
/**
@@ -71,34 +70,34 @@ public Json getCumulative() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(4);
- deserializerMap.put("cumulative", (n) -> { this.setCumulative(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("numberS", (n) -> { this.setNumberS(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("probabilityS", (n) -> { this.setProbabilityS(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("trials", (n) -> { this.setTrials(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("cumulative", (n) -> { this.setCumulative(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("numberS", (n) -> { this.setNumberS(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("probabilityS", (n) -> { this.setProbabilityS(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("trials", (n) -> { this.setTrials(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the numberS property value. The numberS property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumberS() {
+ public UntypedNode getNumberS() {
return this.backingStore.get("numberS");
}
/**
* Gets the probabilityS property value. The probabilityS property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getProbabilityS() {
+ public UntypedNode getProbabilityS() {
return this.backingStore.get("probabilityS");
}
/**
* Gets the trials property value. The trials property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getTrials() {
+ public UntypedNode getTrials() {
return this.backingStore.get("trials");
}
/**
@@ -132,28 +131,28 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the cumulative property value. The cumulative property
* @param value Value to set for the cumulative property.
*/
- public void setCumulative(@jakarta.annotation.Nullable final Json value) {
+ public void setCumulative(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("cumulative", value);
}
/**
* Sets the numberS property value. The numberS property
* @param value Value to set for the numberS property.
*/
- public void setNumberS(@jakarta.annotation.Nullable final Json value) {
+ public void setNumberS(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("numberS", value);
}
/**
* Sets the probabilityS property value. The probabilityS property
* @param value Value to set for the probabilityS property.
*/
- public void setProbabilityS(@jakarta.annotation.Nullable final Json value) {
+ public void setProbabilityS(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("probabilityS", value);
}
/**
* Sets the trials property value. The trials property
* @param value Value to set for the trials property.
*/
- public void setTrials(@jakarta.annotation.Nullable final Json value) {
+ public void setTrials(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("trials", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/binom_dist_range/BinomDistRangePostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/binom_dist_range/BinomDistRangePostRequestBody.java
index ed5f167d2c1..d65ba244c0e 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/binom_dist_range/BinomDistRangePostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/binom_dist_range/BinomDistRangePostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.binom_dist_range;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,42 +62,42 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(4);
- deserializerMap.put("numberS", (n) -> { this.setNumberS(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("numberS2", (n) -> { this.setNumberS2(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("probabilityS", (n) -> { this.setProbabilityS(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("trials", (n) -> { this.setTrials(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("numberS", (n) -> { this.setNumberS(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("numberS2", (n) -> { this.setNumberS2(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("probabilityS", (n) -> { this.setProbabilityS(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("trials", (n) -> { this.setTrials(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the numberS property value. The numberS property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumberS() {
+ public UntypedNode getNumberS() {
return this.backingStore.get("numberS");
}
/**
* Gets the numberS2 property value. The numberS2 property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumberS2() {
+ public UntypedNode getNumberS2() {
return this.backingStore.get("numberS2");
}
/**
* Gets the probabilityS property value. The probabilityS property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getProbabilityS() {
+ public UntypedNode getProbabilityS() {
return this.backingStore.get("probabilityS");
}
/**
* Gets the trials property value. The trials property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getTrials() {
+ public UntypedNode getTrials() {
return this.backingStore.get("trials");
}
/**
@@ -132,28 +131,28 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the numberS property value. The numberS property
* @param value Value to set for the numberS property.
*/
- public void setNumberS(@jakarta.annotation.Nullable final Json value) {
+ public void setNumberS(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("numberS", value);
}
/**
* Sets the numberS2 property value. The numberS2 property
* @param value Value to set for the numberS2 property.
*/
- public void setNumberS2(@jakarta.annotation.Nullable final Json value) {
+ public void setNumberS2(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("numberS2", value);
}
/**
* Sets the probabilityS property value. The probabilityS property
* @param value Value to set for the probabilityS property.
*/
- public void setProbabilityS(@jakarta.annotation.Nullable final Json value) {
+ public void setProbabilityS(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("probabilityS", value);
}
/**
* Sets the trials property value. The trials property
* @param value Value to set for the trials property.
*/
- public void setTrials(@jakarta.annotation.Nullable final Json value) {
+ public void setTrials(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("trials", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/binom_inv/BinomInvPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/binom_inv/BinomInvPostRequestBody.java
index e6bdbd2dc84..3a149455c1d 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/binom_inv/BinomInvPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/binom_inv/BinomInvPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.binom_inv;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -50,10 +49,10 @@ public Map getAdditionalData() {
}
/**
* Gets the alpha property value. The alpha property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getAlpha() {
+ public UntypedNode getAlpha() {
return this.backingStore.get("alpha");
}
/**
@@ -71,25 +70,25 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(3);
- deserializerMap.put("alpha", (n) -> { this.setAlpha(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("probabilityS", (n) -> { this.setProbabilityS(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("trials", (n) -> { this.setTrials(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("alpha", (n) -> { this.setAlpha(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("probabilityS", (n) -> { this.setProbabilityS(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("trials", (n) -> { this.setTrials(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the probabilityS property value. The probabilityS property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getProbabilityS() {
+ public UntypedNode getProbabilityS() {
return this.backingStore.get("probabilityS");
}
/**
* Gets the trials property value. The trials property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getTrials() {
+ public UntypedNode getTrials() {
return this.backingStore.get("trials");
}
/**
@@ -114,7 +113,7 @@ public void setAdditionalData(@jakarta.annotation.Nullable final Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(2);
- deserializerMap.put("number1", (n) -> { this.setNumber1(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("number2", (n) -> { this.setNumber2(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number1", (n) -> { this.setNumber1(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("number2", (n) -> { this.setNumber2(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number1 property value. The number1 property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber1() {
+ public UntypedNode getNumber1() {
return this.backingStore.get("number1");
}
/**
* Gets the number2 property value. The number2 property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber2() {
+ public UntypedNode getNumber2() {
return this.backingStore.get("number2");
}
/**
@@ -112,14 +111,14 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number1 property value. The number1 property
* @param value Value to set for the number1 property.
*/
- public void setNumber1(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber1(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number1", value);
}
/**
* Sets the number2 property value. The number2 property
* @param value Value to set for the number2 property.
*/
- public void setNumber2(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber2(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number2", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitlshift/BitlshiftPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitlshift/BitlshiftPostRequestBody.java
index fd812e7eec0..c3af9d11a4e 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitlshift/BitlshiftPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitlshift/BitlshiftPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.bitlshift;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,24 +62,24 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(2);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("shiftAmount", (n) -> { this.setShiftAmount(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("shiftAmount", (n) -> { this.setShiftAmount(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
* Gets the shiftAmount property value. The shiftAmount property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getShiftAmount() {
+ public UntypedNode getShiftAmount() {
return this.backingStore.get("shiftAmount");
}
/**
@@ -112,14 +111,14 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
/**
* Sets the shiftAmount property value. The shiftAmount property
* @param value Value to set for the shiftAmount property.
*/
- public void setShiftAmount(@jakarta.annotation.Nullable final Json value) {
+ public void setShiftAmount(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("shiftAmount", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitor/BitorPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitor/BitorPostRequestBody.java
index abb02453244..47c13555ad4 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitor/BitorPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitor/BitorPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.bitor;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,24 +62,24 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(2);
- deserializerMap.put("number1", (n) -> { this.setNumber1(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("number2", (n) -> { this.setNumber2(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number1", (n) -> { this.setNumber1(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("number2", (n) -> { this.setNumber2(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number1 property value. The number1 property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber1() {
+ public UntypedNode getNumber1() {
return this.backingStore.get("number1");
}
/**
* Gets the number2 property value. The number2 property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber2() {
+ public UntypedNode getNumber2() {
return this.backingStore.get("number2");
}
/**
@@ -112,14 +111,14 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number1 property value. The number1 property
* @param value Value to set for the number1 property.
*/
- public void setNumber1(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber1(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number1", value);
}
/**
* Sets the number2 property value. The number2 property
* @param value Value to set for the number2 property.
*/
- public void setNumber2(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber2(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number2", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitrshift/BitrshiftPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitrshift/BitrshiftPostRequestBody.java
index 3930361f89e..3e2aa5537f5 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitrshift/BitrshiftPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitrshift/BitrshiftPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.bitrshift;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,24 +62,24 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(2);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("shiftAmount", (n) -> { this.setShiftAmount(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("shiftAmount", (n) -> { this.setShiftAmount(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
* Gets the shiftAmount property value. The shiftAmount property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getShiftAmount() {
+ public UntypedNode getShiftAmount() {
return this.backingStore.get("shiftAmount");
}
/**
@@ -112,14 +111,14 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
/**
* Sets the shiftAmount property value. The shiftAmount property
* @param value Value to set for the shiftAmount property.
*/
- public void setShiftAmount(@jakarta.annotation.Nullable final Json value) {
+ public void setShiftAmount(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("shiftAmount", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitxor/BitxorPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitxor/BitxorPostRequestBody.java
index a8ce85ee6ad..5be599947a6 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitxor/BitxorPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/bitxor/BitxorPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.bitxor;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,24 +62,24 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(2);
- deserializerMap.put("number1", (n) -> { this.setNumber1(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("number2", (n) -> { this.setNumber2(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number1", (n) -> { this.setNumber1(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("number2", (n) -> { this.setNumber2(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number1 property value. The number1 property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber1() {
+ public UntypedNode getNumber1() {
return this.backingStore.get("number1");
}
/**
* Gets the number2 property value. The number2 property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber2() {
+ public UntypedNode getNumber2() {
return this.backingStore.get("number2");
}
/**
@@ -112,14 +111,14 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number1 property value. The number1 property
* @param value Value to set for the number1 property.
*/
- public void setNumber1(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber1(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number1", value);
}
/**
* Sets the number2 property value. The number2 property
* @param value Value to set for the number2 property.
*/
- public void setNumber2(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber2(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number2", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/ceiling_math/CeilingMathPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/ceiling_math/CeilingMathPostRequestBody.java
index 7272dd24ebb..bb44b86313f 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/ceiling_math/CeilingMathPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/ceiling_math/CeilingMathPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.ceiling_math;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,33 +62,33 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(3);
- deserializerMap.put("mode", (n) -> { this.setMode(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("significance", (n) -> { this.setSignificance(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("mode", (n) -> { this.setMode(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("significance", (n) -> { this.setSignificance(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the mode property value. The mode property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getMode() {
+ public UntypedNode getMode() {
return this.backingStore.get("mode");
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
* Gets the significance property value. The significance property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getSignificance() {
+ public UntypedNode getSignificance() {
return this.backingStore.get("significance");
}
/**
@@ -122,21 +121,21 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the mode property value. The mode property
* @param value Value to set for the mode property.
*/
- public void setMode(@jakarta.annotation.Nullable final Json value) {
+ public void setMode(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("mode", value);
}
/**
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
/**
* Sets the significance property value. The significance property
* @param value Value to set for the significance property.
*/
- public void setSignificance(@jakarta.annotation.Nullable final Json value) {
+ public void setSignificance(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("significance", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/ceiling_precise/CeilingPrecisePostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/ceiling_precise/CeilingPrecisePostRequestBody.java
index 2df7a877c54..2862c822502 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/ceiling_precise/CeilingPrecisePostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/ceiling_precise/CeilingPrecisePostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.ceiling_precise;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,24 +62,24 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(2);
- deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(Json::createFromDiscriminatorValue)); });
- deserializerMap.put("significance", (n) -> { this.setSignificance(n.getObjectValue(Json::createFromDiscriminatorValue)); });
+ deserializerMap.put("number", (n) -> { this.setNumber(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
+ deserializerMap.put("significance", (n) -> { this.setSignificance(n.getObjectValue(UntypedNode::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the number property value. The number property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getNumber() {
+ public UntypedNode getNumber() {
return this.backingStore.get("number");
}
/**
* Gets the significance property value. The significance property
- * @return a {@link Json}
+ * @return a {@link UntypedNode}
*/
@jakarta.annotation.Nullable
- public Json getSignificance() {
+ public UntypedNode getSignificance() {
return this.backingStore.get("significance");
}
/**
@@ -112,14 +111,14 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value
* Sets the number property value. The number property
* @param value Value to set for the number property.
*/
- public void setNumber(@jakarta.annotation.Nullable final Json value) {
+ public void setNumber(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("number", value);
}
/**
* Sets the significance property value. The significance property
* @param value Value to set for the significance property.
*/
- public void setSignificance(@jakarta.annotation.Nullable final Json value) {
+ public void setSignificance(@jakarta.annotation.Nullable final UntypedNode value) {
this.backingStore.set("significance", value);
}
}
diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/charescaped/CharPostRequestBody.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/charescaped/CharPostRequestBody.java
index 6778668a5f2..dc7b2ce86e7 100644
--- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/charescaped/CharPostRequestBody.java
+++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/functions/charescaped/CharPostRequestBody.java
@@ -1,6 +1,5 @@
package com.microsoft.graph.drives.item.items.item.workbook.functions.charescaped;
-import com.microsoft.graph.models.Json;
import com.microsoft.kiota.serialization.AdditionalDataHolder;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
@@ -63,15 +62,15 @@ public BackingStore getBackingStore() {
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap