@@ -61,8 +61,8 @@ public class BalanceTransfers: IBalanceTransfers
6161 {
6262 public SDKConfig SDKConfiguration { get ; private set ; }
6363 private const string _language = "csharp" ;
64- private const string _sdkVersion = "0.7.0 " ;
65- private const string _sdkGenVersion = "2.722 .2" ;
64+ private const string _sdkVersion = "0.7.1 " ;
65+ private const string _sdkGenVersion = "2.723 .2" ;
6666 private const string _openapiDocVersion = "1.0.0" ;
6767
6868 public BalanceTransfers ( SDKConfig config )
@@ -96,7 +96,7 @@ public async Task<CreateConnectBalanceTransferResponse> CreateAsync(string? idem
9696 httpRequest = new SecurityMetadata ( SDKConfiguration . SecuritySource ) . Apply ( httpRequest ) ;
9797 }
9898
99- var hookCtx = new HookContext ( SDKConfiguration , baseUrl , "create-connect-balance-transfer" , new List < string > { } , SDKConfiguration . SecuritySource , cancellationToken ) ;
99+ var hookCtx = new HookContext ( SDKConfiguration , baseUrl , "create-connect-balance-transfer" , null , SDKConfiguration . SecuritySource , cancellationToken ) ;
100100
101101 httpRequest = await this . SDKConfiguration . Hooks . BeforeRequestAsync ( new BeforeRequestContext ( hookCtx ) , httpRequest ) ;
102102 if ( retryConfig == null )
@@ -246,7 +246,7 @@ public async Task<ListConnectBalanceTransfersResponse> ListAsync(ListConnectBala
246246 httpRequest = new SecurityMetadata ( SDKConfiguration . SecuritySource ) . Apply ( httpRequest ) ;
247247 }
248248
249- var hookCtx = new HookContext ( SDKConfiguration , baseUrl , "list-connect-balance-transfers" , new List < string > { } , SDKConfiguration . SecuritySource , cancellationToken ) ;
249+ var hookCtx = new HookContext ( SDKConfiguration , baseUrl , "list-connect-balance-transfers" , null , SDKConfiguration . SecuritySource , cancellationToken ) ;
250250
251251 httpRequest = await this . SDKConfiguration . Hooks . BeforeRequestAsync ( new BeforeRequestContext ( hookCtx ) , httpRequest ) ;
252252 if ( retryConfig == null )
@@ -402,7 +402,7 @@ public async Task<GetConnectBalanceTransferResponse> GetAsync(string id, bool? t
402402 httpRequest = new SecurityMetadata ( SDKConfiguration . SecuritySource ) . Apply ( httpRequest ) ;
403403 }
404404
405- var hookCtx = new HookContext ( SDKConfiguration , baseUrl , "get-connect-balance-transfer" , new List < string > { } , SDKConfiguration . SecuritySource , cancellationToken ) ;
405+ var hookCtx = new HookContext ( SDKConfiguration , baseUrl , "get-connect-balance-transfer" , null , SDKConfiguration . SecuritySource , cancellationToken ) ;
406406
407407 httpRequest = await this . SDKConfiguration . Hooks . BeforeRequestAsync ( new BeforeRequestContext ( hookCtx ) , httpRequest ) ;
408408 if ( retryConfig == null )
0 commit comments