Commit a1477da 1 parent 7b64aea commit a1477da Copy full SHA for a1477da
File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ public async Task<Invite> CreateInvite(Invite body)
272
272
/// </summary>
273
273
/// <param name="inviteId">The identifier of the invite.</param>
274
274
/// <returns>Account</returns>
275
- public async Task < Account > RespondToInvite ( string inviteId )
275
+ public async Task RespondToInvite ( string inviteId )
276
276
{
277
277
if ( inviteId == null ) throw new ArgumentNullException ( "Missing required parameter 'inviteId'." ) ;
278
278
@@ -281,7 +281,6 @@ public async Task<Account> RespondToInvite(string inviteId)
281
281
using ( var response = await client . PatchAsync ( path , new Invite ( ) . ToHttpContent ( ) ) )
282
282
{
283
283
await response . ThrowIfNotSuccessStatusCode ( ) ;
284
- return await response . Content . ReadAsAsync < Account > ( ) ;
285
284
}
286
285
}
287
286
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ public interface IAccessRecordsApi
130
130
/// </remarks>
131
131
/// <param name="inviteId">The identifier of the invite.</param>
132
132
/// <returns>Account</returns>
133
- Task < Account > RespondToInvite ( string inviteId ) ;
133
+ Task RespondToInvite ( string inviteId ) ;
134
134
135
135
/// <summary>
136
136
/// Delete invite
You can’t perform that action at this time.
0 commit comments