@@ -53,8 +53,8 @@ public interface IAccountApiSync : IApiAccessor
5353 ///
5454 /// </remarks>
5555 /// <exception cref="Io.Gate.GateApi.Client.ApiException">Thrown when fails to make API call</exception>
56- /// <returns>Key </returns>
57- Key GetAccountMainKeys ( ) ;
56+ /// <returns>AccountKeyInfo </returns>
57+ AccountKeyInfo GetAccountMainKeys ( ) ;
5858
5959 /// <summary>
6060 /// Query All Main Account Key Information
@@ -63,8 +63,8 @@ public interface IAccountApiSync : IApiAccessor
6363 ///
6464 /// </remarks>
6565 /// <exception cref="Io.Gate.GateApi.Client.ApiException">Thrown when fails to make API call</exception>
66- /// <returns>ApiResponse of Key </returns>
67- ApiResponse < Key > GetAccountMainKeysWithHttpInfo ( ) ;
66+ /// <returns>ApiResponse of AccountKeyInfo </returns>
67+ ApiResponse < AccountKeyInfo > GetAccountMainKeysWithHttpInfo ( ) ;
6868 /// <summary>
6969 /// Get user transaction rate limit information
7070 /// </summary>
@@ -268,8 +268,8 @@ public interface IAccountApiAsync : IApiAccessor
268268 ///
269269 /// </remarks>
270270 /// <exception cref="Io.Gate.GateApi.Client.ApiException">Thrown when fails to make API call</exception>
271- /// <returns>Task of Key </returns>
272- Task < Key > GetAccountMainKeysAsync ( ) ;
271+ /// <returns>Task of AccountKeyInfo </returns>
272+ Task < AccountKeyInfo > GetAccountMainKeysAsync ( ) ;
273273
274274 /// <summary>
275275 /// Query All Main Account Key Information
@@ -278,8 +278,8 @@ public interface IAccountApiAsync : IApiAccessor
278278 ///
279279 /// </remarks>
280280 /// <exception cref="Io.Gate.GateApi.Client.ApiException">Thrown when fails to make API call</exception>
281- /// <returns>Task of ApiResponse (Key )</returns>
282- Task < ApiResponse < Key > > GetAccountMainKeysAsyncWithHttpInfo ( ) ;
281+ /// <returns>Task of ApiResponse (AccountKeyInfo )</returns>
282+ Task < ApiResponse < AccountKeyInfo > > GetAccountMainKeysAsyncWithHttpInfo ( ) ;
283283 /// <summary>
284284 /// Get user transaction rate limit information
285285 /// </summary>
@@ -675,19 +675,19 @@ public async Task<ApiResponse<AccountDetail>> GetAccountDetailAsyncWithHttpInfo
675675 /// Query All Main Account Key Information
676676 /// </summary>
677677 /// <exception cref="Io.Gate.GateApi.Client.ApiException">Thrown when fails to make API call</exception>
678- /// <returns>Key </returns>
679- public Key GetAccountMainKeys ( )
678+ /// <returns>AccountKeyInfo </returns>
679+ public AccountKeyInfo GetAccountMainKeys ( )
680680 {
681- ApiResponse < Key > localVarResponse = GetAccountMainKeysWithHttpInfo ( ) ;
681+ ApiResponse < AccountKeyInfo > localVarResponse = GetAccountMainKeysWithHttpInfo ( ) ;
682682 return localVarResponse . Data ;
683683 }
684684
685685 /// <summary>
686686 /// Query All Main Account Key Information
687687 /// </summary>
688688 /// <exception cref="Io.Gate.GateApi.Client.ApiException">Thrown when fails to make API call</exception>
689- /// <returns>ApiResponse of Key </returns>
690- public ApiResponse < Key > GetAccountMainKeysWithHttpInfo ( )
689+ /// <returns>ApiResponse of AccountKeyInfo </returns>
690+ public ApiResponse < AccountKeyInfo > GetAccountMainKeysWithHttpInfo ( )
691691 {
692692 RequestOptions localVarRequestOptions = new RequestOptions ( ) ;
693693
@@ -710,7 +710,7 @@ public ApiResponse<Key> GetAccountMainKeysWithHttpInfo ()
710710 localVarRequestOptions . RequireApiV4Auth = true ;
711711
712712 // make the HTTP request
713- var localVarResponse = this . Client . Get < Key > ( "/account/main_keys" , localVarRequestOptions , this . Configuration ) ;
713+ var localVarResponse = this . Client . Get < AccountKeyInfo > ( "/account/main_keys" , localVarRequestOptions , this . Configuration ) ;
714714
715715 if ( this . ExceptionFactory != null )
716716 {
@@ -725,10 +725,10 @@ public ApiResponse<Key> GetAccountMainKeysWithHttpInfo ()
725725 /// Query All Main Account Key Information
726726 /// </summary>
727727 /// <exception cref="Io.Gate.GateApi.Client.ApiException">Thrown when fails to make API call</exception>
728- /// <returns>Task of Key </returns>
729- public async Task < Key > GetAccountMainKeysAsync ( )
728+ /// <returns>Task of AccountKeyInfo </returns>
729+ public async Task < AccountKeyInfo > GetAccountMainKeysAsync ( )
730730 {
731- Io . Gate . GateApi . Client . ApiResponse < Key > localVarResponse = await GetAccountMainKeysAsyncWithHttpInfo ( ) ;
731+ Io . Gate . GateApi . Client . ApiResponse < AccountKeyInfo > localVarResponse = await GetAccountMainKeysAsyncWithHttpInfo ( ) ;
732732 return localVarResponse . Data ;
733733
734734 }
@@ -737,8 +737,8 @@ public async Task<Key> GetAccountMainKeysAsync ()
737737 /// Query All Main Account Key Information
738738 /// </summary>
739739 /// <exception cref="Io.Gate.GateApi.Client.ApiException">Thrown when fails to make API call</exception>
740- /// <returns>Task of ApiResponse (Key )</returns>
741- public async Task < ApiResponse < Key > > GetAccountMainKeysAsyncWithHttpInfo ( )
740+ /// <returns>Task of ApiResponse (AccountKeyInfo )</returns>
741+ public async Task < ApiResponse < AccountKeyInfo > > GetAccountMainKeysAsyncWithHttpInfo ( )
742742 {
743743
744744 RequestOptions localVarRequestOptions = new RequestOptions ( ) ;
@@ -763,7 +763,7 @@ public async Task<ApiResponse<Key>> GetAccountMainKeysAsyncWithHttpInfo ()
763763
764764 // make the HTTP request
765765
766- var localVarResponse = await this . AsynchronousClient . GetAsync < Key > ( "/account/main_keys" , localVarRequestOptions , this . Configuration ) ;
766+ var localVarResponse = await this . AsynchronousClient . GetAsync < AccountKeyInfo > ( "/account/main_keys" , localVarRequestOptions , this . Configuration ) ;
767767
768768 if ( this . ExceptionFactory != null )
769769 {
0 commit comments