Skip to content

Commit

Permalink
Made the change for update async
Browse files Browse the repository at this point in the history
  • Loading branch information
JayaBharat-plivo committed Sep 18, 2024
1 parent c619663 commit e414637
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Plivo/Resource/MaskingSession/MaskingSessionInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ public MaskingSessionUpdateResponse<MaskingSession> Update(string sessionUuid,
});
}

public async Task<AsyncResponse> UpdateAsync(string sessionUuid, string first_party = null, string second_party = null, uint? sessionExpiry = null, uint? callTimeLimit = null,
public async Task<AsyncResponse> UpdateAsync(string sessionUuid, string firstParty = null, string secondParty = null, uint? sessionExpiry = null, uint? callTimeLimit = null,
bool? record = null, string recordFileFormat = null, string recordingCallbackUrl = null, string callbackUrl = null,
string callbackMethod = null, uint? ringTimeout = null, string firstPartyPlayUrl = null, string secondPartyPlayUrl = null,
string recordingCallbackMethod = null, string subaccount = null, bool? geomatch = null
Expand All @@ -336,8 +336,8 @@ public async Task<AsyncResponse> UpdateAsync(string sessionUuid, string first_p
var data = CreateData(
mandatoryParams,
new
{ first_party,
second_party,
{ firstParty,
secondParty,
sessionExpiry,
callTimeLimit,
record,
Expand Down

0 comments on commit e414637

Please sign in to comment.