Skip to content

Commit 59c6b20

Browse files
andrueastmanMicrosoft Graph DevX Toolingrkodev
authored
Generated models and request builders (#646)
* Update generated files with build 131601 * Update changelog --------- Co-authored-by: Microsoft Graph DevX Tooling <GraphTooling@service.microsoft.com> Co-authored-by: rkodev <43806892+rkodev@users.noreply.github.com>
1 parent a80c224 commit 59c6b20

File tree

138 files changed

+5214
-387
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+5214
-387
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
## [1.30.0]- 2024-01-17
15+
16+
### Changed
17+
18+
- Weekly generation.
19+
1420
## [1.29.0]- 2024-01-03
1521

1622
### Changed

chats/item_members_conversation_member_item_request_builder.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type ItemMembersConversationMemberItemRequestBuilderDeleteRequestConfiguration s
1818
// Request options
1919
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
2020
}
21-
// ItemMembersConversationMemberItemRequestBuilderGetQueryParameters retrieve a conversationMember from a chat or channel.
21+
// ItemMembersConversationMemberItemRequestBuilderGetQueryParameters retrieve a conversationMember from a chat.
2222
type ItemMembersConversationMemberItemRequestBuilderGetQueryParameters struct {
2323
// Expand related entities
2424
Expand []string `uriparametername:"%24expand"`
@@ -73,10 +73,10 @@ func (m *ItemMembersConversationMemberItemRequestBuilder) Delete(ctx context.Con
7373
}
7474
return nil
7575
}
76-
// Get retrieve a conversationMember from a chat or channel.
76+
// Get retrieve a conversationMember from a chat.
7777
// [Find more info here]
7878
//
79-
// [Find more info here]: https://learn.microsoft.com/graph/api/conversationmember-get?view=graph-rest-1.0
79+
// [Find more info here]: https://learn.microsoft.com/graph/api/chat-get-members?view=graph-rest-1.0
8080
func (m *ItemMembersConversationMemberItemRequestBuilder) Get(ctx context.Context, requestConfiguration *ItemMembersConversationMemberItemRequestBuilderGetRequestConfiguration)(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.ConversationMemberable, error) {
8181
requestInfo, err := m.ToGetRequestInformation(ctx, requestConfiguration);
8282
if err != nil {
@@ -124,7 +124,7 @@ func (m *ItemMembersConversationMemberItemRequestBuilder) ToDeleteRequestInforma
124124
requestInfo.Headers.TryAdd("Accept", "application/json")
125125
return requestInfo, nil
126126
}
127-
// ToGetRequestInformation retrieve a conversationMember from a chat or channel.
127+
// ToGetRequestInformation retrieve a conversationMember from a chat.
128128
func (m *ItemMembersConversationMemberItemRequestBuilder) ToGetRequestInformation(ctx context.Context, requestConfiguration *ItemMembersConversationMemberItemRequestBuilderGetRequestConfiguration)(*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error) {
129129
requestInfo := i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.NewRequestInformationWithMethodAndUrlTemplateAndPathParameters(i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.GET, m.BaseRequestBuilder.UrlTemplate, m.BaseRequestBuilder.PathParameters)
130130
if requestConfiguration != nil {

chats/item_messages_request_builder.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ func (m *ItemMessagesRequestBuilder) Get(ctx context.Context, requestConfigurati
100100
}
101101
return res.(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.ChatMessageCollectionResponseable), nil
102102
}
103-
// Post send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
103+
// Post send a new chatMessage in the specified channel or a chat.
104104
// [Find more info here]
105105
//
106-
// [Find more info here]: https://learn.microsoft.com/graph/api/chat-post-messages?view=graph-rest-1.0
106+
// [Find more info here]: https://learn.microsoft.com/graph/api/chatmessage-post?view=graph-rest-1.0
107107
func (m *ItemMessagesRequestBuilder) Post(ctx context.Context, body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.ChatMessageable, requestConfiguration *ItemMessagesRequestBuilderPostRequestConfiguration)(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.ChatMessageable, error) {
108108
requestInfo, err := m.ToPostRequestInformation(ctx, body, requestConfiguration);
109109
if err != nil {
@@ -135,7 +135,7 @@ func (m *ItemMessagesRequestBuilder) ToGetRequestInformation(ctx context.Context
135135
requestInfo.Headers.TryAdd("Accept", "application/json")
136136
return requestInfo, nil
137137
}
138-
// ToPostRequestInformation send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
138+
// ToPostRequestInformation send a new chatMessage in the specified channel or a chat.
139139
func (m *ItemMessagesRequestBuilder) ToPostRequestInformation(ctx context.Context, body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.ChatMessageable, requestConfiguration *ItemMessagesRequestBuilderPostRequestConfiguration)(*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error) {
140140
requestInfo := i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.NewRequestInformationWithMethodAndUrlTemplateAndPathParameters(i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.POST, m.BaseRequestBuilder.UrlTemplate, m.BaseRequestBuilder.PathParameters)
141141
if requestConfiguration != nil {

chats/item_send_activity_notification_post_request_body.go

+36
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,16 @@ func (m *ItemSendActivityNotificationPostRequestBody) GetFieldDeserializers()(ma
104104
}
105105
return nil
106106
}
107+
res["teamsAppId"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
108+
val, err := n.GetStringValue()
109+
if err != nil {
110+
return err
111+
}
112+
if val != nil {
113+
m.SetTeamsAppId(val)
114+
}
115+
return nil
116+
}
107117
res["templateParameters"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
108118
val, err := n.GetCollectionOfObjectValues(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.CreateKeyValuePairFromDiscriminatorValue)
109119
if err != nil {
@@ -154,6 +164,17 @@ func (m *ItemSendActivityNotificationPostRequestBody) GetRecipient()(iadcd811244
154164
}
155165
return nil
156166
}
167+
// GetTeamsAppId gets the teamsAppId property value. The teamsAppId property
168+
func (m *ItemSendActivityNotificationPostRequestBody) GetTeamsAppId()(*string) {
169+
val, err := m.GetBackingStore().Get("teamsAppId")
170+
if err != nil {
171+
panic(err)
172+
}
173+
if val != nil {
174+
return val.(*string)
175+
}
176+
return nil
177+
}
157178
// GetTemplateParameters gets the templateParameters property value. The templateParameters property
158179
func (m *ItemSendActivityNotificationPostRequestBody) GetTemplateParameters()([]iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.KeyValuePairable) {
159180
val, err := m.GetBackingStore().Get("templateParameters")
@@ -202,6 +223,12 @@ func (m *ItemSendActivityNotificationPostRequestBody) Serialize(writer i878a80d2
202223
return err
203224
}
204225
}
226+
{
227+
err := writer.WriteStringValue("teamsAppId", m.GetTeamsAppId())
228+
if err != nil {
229+
return err
230+
}
231+
}
205232
if m.GetTemplateParameters() != nil {
206233
cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetTemplateParameters()))
207234
for i, v := range m.GetTemplateParameters() {
@@ -267,6 +294,13 @@ func (m *ItemSendActivityNotificationPostRequestBody) SetRecipient(value iadcd81
267294
panic(err)
268295
}
269296
}
297+
// SetTeamsAppId sets the teamsAppId property value. The teamsAppId property
298+
func (m *ItemSendActivityNotificationPostRequestBody) SetTeamsAppId(value *string)() {
299+
err := m.GetBackingStore().Set("teamsAppId", value)
300+
if err != nil {
301+
panic(err)
302+
}
303+
}
270304
// SetTemplateParameters sets the templateParameters property value. The templateParameters property
271305
func (m *ItemSendActivityNotificationPostRequestBody) SetTemplateParameters(value []iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.KeyValuePairable)() {
272306
err := m.GetBackingStore().Set("templateParameters", value)
@@ -291,13 +325,15 @@ type ItemSendActivityNotificationPostRequestBodyable interface {
291325
GetChainId()(*int64)
292326
GetPreviewText()(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.ItemBodyable)
293327
GetRecipient()(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.TeamworkNotificationRecipientable)
328+
GetTeamsAppId()(*string)
294329
GetTemplateParameters()([]iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.KeyValuePairable)
295330
GetTopic()(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.TeamworkActivityTopicable)
296331
SetActivityType(value *string)()
297332
SetBackingStore(value ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore)()
298333
SetChainId(value *int64)()
299334
SetPreviewText(value iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.ItemBodyable)()
300335
SetRecipient(value iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.TeamworkNotificationRecipientable)()
336+
SetTeamsAppId(value *string)()
301337
SetTemplateParameters(value []iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.KeyValuePairable)()
302338
SetTopic(value iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.TeamworkActivityTopicable)()
303339
}

communications/calls_item_participants_invite_request_builder.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ func NewCallsItemParticipantsInviteRequestBuilder(rawUrl string, requestAdapter
3131
urlParams["request-raw-url"] = rawUrl
3232
return NewCallsItemParticipantsInviteRequestBuilderInternal(urlParams, requestAdapter)
3333
}
34-
// Post delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
34+
// Post invite participants to the active call. For more information about how to handle operations, see commsOperation.
3535
// [Find more info here]
3636
//
37-
// [Find more info here]: https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0
37+
// [Find more info here]: https://learn.microsoft.com/graph/api/participant-invite?view=graph-rest-1.0
3838
func (m *CallsItemParticipantsInviteRequestBuilder) Post(ctx context.Context, body CallsItemParticipantsInvitePostRequestBodyable, requestConfiguration *CallsItemParticipantsInviteRequestBuilderPostRequestConfiguration)(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.InviteParticipantsOperationable, error) {
3939
requestInfo, err := m.ToPostRequestInformation(ctx, body, requestConfiguration);
4040
if err != nil {
@@ -53,7 +53,7 @@ func (m *CallsItemParticipantsInviteRequestBuilder) Post(ctx context.Context, bo
5353
}
5454
return res.(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.InviteParticipantsOperationable), nil
5555
}
56-
// ToPostRequestInformation delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
56+
// ToPostRequestInformation invite participants to the active call. For more information about how to handle operations, see commsOperation.
5757
func (m *CallsItemParticipantsInviteRequestBuilder) ToPostRequestInformation(ctx context.Context, body CallsItemParticipantsInvitePostRequestBodyable, requestConfiguration *CallsItemParticipantsInviteRequestBuilderPostRequestConfiguration)(*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error) {
5858
requestInfo := i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.NewRequestInformationWithMethodAndUrlTemplateAndPathParameters(i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.POST, m.BaseRequestBuilder.UrlTemplate, m.BaseRequestBuilder.PathParameters)
5959
if requestConfiguration != nil {

deviceappmanagement/device_app_management_request_builder.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func (m *DeviceAppManagementRequestBuilder) DefaultManagedAppProtections()(*Defa
5858
// Get read properties and relationships of the deviceAppManagement object.
5959
// [Find more info here]
6060
//
61-
// [Find more info here]: https://learn.microsoft.com/graph/api/intune-partnerintegration-deviceappmanagement-get?view=graph-rest-1.0
61+
// [Find more info here]: https://learn.microsoft.com/graph/api/intune-onboarding-deviceappmanagement-get?view=graph-rest-1.0
6262
func (m *DeviceAppManagementRequestBuilder) Get(ctx context.Context, requestConfiguration *DeviceAppManagementRequestBuilderGetRequestConfiguration)(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.DeviceAppManagementable, error) {
6363
requestInfo, err := m.ToGetRequestInformation(ctx, requestConfiguration);
6464
if err != nil {
@@ -116,7 +116,7 @@ func (m *DeviceAppManagementRequestBuilder) MobileApps()(*MobileAppsRequestBuild
116116
// Patch update the properties of a deviceAppManagement object.
117117
// [Find more info here]
118118
//
119-
// [Find more info here]: https://learn.microsoft.com/graph/api/intune-onboarding-deviceappmanagement-update?view=graph-rest-1.0
119+
// [Find more info here]: https://learn.microsoft.com/graph/api/intune-policyset-deviceappmanagement-update?view=graph-rest-1.0
120120
func (m *DeviceAppManagementRequestBuilder) Patch(ctx context.Context, body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.DeviceAppManagementable, requestConfiguration *DeviceAppManagementRequestBuilderPatchRequestConfiguration)(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.DeviceAppManagementable, error) {
121121
requestInfo, err := m.ToPatchRequestInformation(ctx, body, requestConfiguration);
122122
if err != nil {

deviceappmanagement/managed_app_policies_item_target_apps_request_builder.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func NewManagedAppPoliciesItemTargetAppsRequestBuilder(rawUrl string, requestAda
3333
// Post not yet documented
3434
// [Find more info here]
3535
//
36-
// [Find more info here]: https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-targetapps?view=graph-rest-1.0
36+
// [Find more info here]: https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0
3737
func (m *ManagedAppPoliciesItemTargetAppsRequestBuilder) Post(ctx context.Context, body ManagedAppPoliciesItemTargetAppsPostRequestBodyable, requestConfiguration *ManagedAppPoliciesItemTargetAppsRequestBuilderPostRequestConfiguration)(error) {
3838
requestInfo, err := m.ToPostRequestInformation(ctx, body, requestConfiguration);
3939
if err != nil {

deviceappmanagement/managed_app_policies_managed_app_policy_item_request_builder.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type ManagedAppPoliciesManagedAppPolicyItemRequestBuilderDeleteRequestConfigurat
1818
// Request options
1919
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
2020
}
21-
// ManagedAppPoliciesManagedAppPolicyItemRequestBuilderGetQueryParameters read properties and relationships of the managedAppProtection object.
21+
// ManagedAppPoliciesManagedAppPolicyItemRequestBuilderGetQueryParameters read properties and relationships of the managedAppConfiguration object.
2222
type ManagedAppPoliciesManagedAppPolicyItemRequestBuilderGetQueryParameters struct {
2323
// Expand related entities
2424
Expand []string `uriparametername:"%24expand"`
@@ -70,10 +70,10 @@ func (m *ManagedAppPoliciesManagedAppPolicyItemRequestBuilder) Delete(ctx contex
7070
}
7171
return nil
7272
}
73-
// Get read properties and relationships of the managedAppProtection object.
73+
// Get read properties and relationships of the managedAppConfiguration object.
7474
// [Find more info here]
7575
//
76-
// [Find more info here]: https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-get?view=graph-rest-1.0
76+
// [Find more info here]: https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-get?view=graph-rest-1.0
7777
func (m *ManagedAppPoliciesManagedAppPolicyItemRequestBuilder) Get(ctx context.Context, requestConfiguration *ManagedAppPoliciesManagedAppPolicyItemRequestBuilderGetRequestConfiguration)(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.ManagedAppPolicyable, error) {
7878
requestInfo, err := m.ToGetRequestInformation(ctx, requestConfiguration);
7979
if err != nil {
@@ -125,7 +125,7 @@ func (m *ManagedAppPoliciesManagedAppPolicyItemRequestBuilder) ToDeleteRequestIn
125125
requestInfo.Headers.TryAdd("Accept", "application/json")
126126
return requestInfo, nil
127127
}
128-
// ToGetRequestInformation read properties and relationships of the managedAppProtection object.
128+
// ToGetRequestInformation read properties and relationships of the managedAppConfiguration object.
129129
func (m *ManagedAppPoliciesManagedAppPolicyItemRequestBuilder) ToGetRequestInformation(ctx context.Context, requestConfiguration *ManagedAppPoliciesManagedAppPolicyItemRequestBuilderGetRequestConfiguration)(*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error) {
130130
requestInfo := i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.NewRequestInformationWithMethodAndUrlTemplateAndPathParameters(i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.GET, m.BaseRequestBuilder.UrlTemplate, m.BaseRequestBuilder.PathParameters)
131131
if requestConfiguration != nil {

deviceappmanagement/managed_app_policies_request_builder.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
type ManagedAppPoliciesRequestBuilder struct {
1212
i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.BaseRequestBuilder
1313
}
14-
// ManagedAppPoliciesRequestBuilderGetQueryParameters list properties and relationships of the targetedManagedAppProtection objects.
14+
// ManagedAppPoliciesRequestBuilderGetQueryParameters list properties and relationships of the managedAppConfiguration objects.
1515
type ManagedAppPoliciesRequestBuilderGetQueryParameters struct {
1616
// Include count of items
1717
Count *bool `uriparametername:"%24count"`
@@ -74,10 +74,10 @@ func NewManagedAppPoliciesRequestBuilder(rawUrl string, requestAdapter i2ae4187f
7474
func (m *ManagedAppPoliciesRequestBuilder) Count()(*ManagedAppPoliciesCountRequestBuilder) {
7575
return NewManagedAppPoliciesCountRequestBuilderInternal(m.BaseRequestBuilder.PathParameters, m.BaseRequestBuilder.RequestAdapter)
7676
}
77-
// Get list properties and relationships of the targetedManagedAppProtection objects.
77+
// Get list properties and relationships of the managedAppConfiguration objects.
7878
// [Find more info here]
7979
//
80-
// [Find more info here]: https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-list?view=graph-rest-1.0
80+
// [Find more info here]: https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-list?view=graph-rest-1.0
8181
func (m *ManagedAppPoliciesRequestBuilder) Get(ctx context.Context, requestConfiguration *ManagedAppPoliciesRequestBuilderGetRequestConfiguration)(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.ManagedAppPolicyCollectionResponseable, error) {
8282
requestInfo, err := m.ToGetRequestInformation(ctx, requestConfiguration);
8383
if err != nil {
@@ -115,7 +115,7 @@ func (m *ManagedAppPoliciesRequestBuilder) Post(ctx context.Context, body iadcd8
115115
}
116116
return res.(iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.ManagedAppPolicyable), nil
117117
}
118-
// ToGetRequestInformation list properties and relationships of the targetedManagedAppProtection objects.
118+
// ToGetRequestInformation list properties and relationships of the managedAppConfiguration objects.
119119
func (m *ManagedAppPoliciesRequestBuilder) ToGetRequestInformation(ctx context.Context, requestConfiguration *ManagedAppPoliciesRequestBuilderGetRequestConfiguration)(*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error) {
120120
requestInfo := i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.NewRequestInformationWithMethodAndUrlTemplateAndPathParameters(i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.GET, m.BaseRequestBuilder.UrlTemplate, m.BaseRequestBuilder.PathParameters)
121121
if requestConfiguration != nil {

0 commit comments

Comments
 (0)