/* * 后台API * * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: Admin * * Generated by: https://github.com/swagger-api/swagger-codegen.git */ using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using RestSharp; using IO.Swagger.Client; using IO.Swagger.Model; namespace IO.Swagger.Api { /// /// Represents a collection of functions to interact with the API endpoints /// public interface ILxmServiceApi : IApiAccessor { #region Synchronous Operations /// /// 根据编码得到非套餐服务列表 /// /// /// /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// List<LxmServiceResp> List LxmServiceGetTopLxmServiceList (string code, string authorization); /// /// 根据编码得到非套餐服务列表 /// /// /// /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// ApiResponse of List<LxmServiceResp> ApiResponse> LxmServiceGetTopLxmServiceListWithHttpInfo (string code, string authorization); /// /// 得到前10条套装商品 /// /// /// /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// List<NcSuiteGoodsResp> List LxmServiceGetTopNcSuiteServiceList (string code, string authorization); /// /// 得到前10条套装商品 /// /// /// /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// ApiResponse of List<NcSuiteGoodsResp> ApiResponse> LxmServiceGetTopNcSuiteServiceListWithHttpInfo (string code, string authorization); #endregion Synchronous Operations #region Asynchronous Operations /// /// 根据编码得到非套餐服务列表 /// /// /// /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// Task of List<LxmServiceResp> System.Threading.Tasks.Task> LxmServiceGetTopLxmServiceListAsync (string code, string authorization); /// /// 根据编码得到非套餐服务列表 /// /// /// /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// Task of ApiResponse (List<LxmServiceResp>) System.Threading.Tasks.Task>> LxmServiceGetTopLxmServiceListAsyncWithHttpInfo (string code, string authorization); /// /// 得到前10条套装商品 /// /// /// /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// Task of List<NcSuiteGoodsResp> System.Threading.Tasks.Task> LxmServiceGetTopNcSuiteServiceListAsync (string code, string authorization); /// /// 得到前10条套装商品 /// /// /// /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// Task of ApiResponse (List<NcSuiteGoodsResp>) System.Threading.Tasks.Task>> LxmServiceGetTopNcSuiteServiceListAsyncWithHttpInfo (string code, string authorization); #endregion Asynchronous Operations } /// /// Represents a collection of functions to interact with the API endpoints /// public partial class LxmServiceApi : ILxmServiceApi { private IO.Swagger.Client.ExceptionFactory _exceptionFactory = (name, response) => null; /// /// Initializes a new instance of the class. /// /// public LxmServiceApi(String basePath) { this.Configuration = new IO.Swagger.Client.Configuration { BasePath = basePath }; ExceptionFactory = IO.Swagger.Client.Configuration.DefaultExceptionFactory; } /// /// Initializes a new instance of the class /// using Configuration object /// /// An instance of Configuration /// public LxmServiceApi(IO.Swagger.Client.Configuration configuration = null) { if (configuration == null) // use the default one in Configuration this.Configuration = IO.Swagger.Client.Configuration.Default; else this.Configuration = configuration; ExceptionFactory = IO.Swagger.Client.Configuration.DefaultExceptionFactory; } /// /// Gets the base path of the API client. /// /// The base path public String GetBasePath() { return this.Configuration.ApiClient.RestClient.BaseUrl.ToString(); } /// /// Sets the base path of the API client. /// /// The base path [Obsolete("SetBasePath is deprecated, please do 'Configuration.ApiClient = new ApiClient(\"http://new-path\")' instead.")] public void SetBasePath(String basePath) { // do nothing } /// /// Gets or sets the configuration object /// /// An instance of the Configuration public IO.Swagger.Client.Configuration Configuration {get; set;} /// /// Provides a factory method hook for the creation of exceptions. /// public IO.Swagger.Client.ExceptionFactory ExceptionFactory { get { if (_exceptionFactory != null && _exceptionFactory.GetInvocationList().Length > 1) { throw new InvalidOperationException("Multicast delegate for ExceptionFactory is unsupported."); } return _exceptionFactory; } set { _exceptionFactory = value; } } /// /// Gets the default header. /// /// Dictionary of HTTP header [Obsolete("DefaultHeader is deprecated, please use Configuration.DefaultHeader instead.")] public IDictionary DefaultHeader() { return new ReadOnlyDictionary(this.Configuration.DefaultHeader); } /// /// Add default header. /// /// Header field name. /// Header field value. /// [Obsolete("AddDefaultHeader is deprecated, please use Configuration.AddDefaultHeader instead.")] public void AddDefaultHeader(string key, string value) { this.Configuration.AddDefaultHeader(key, value); } /// /// 根据编码得到非套餐服务列表 /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// List<LxmServiceResp> public List LxmServiceGetTopLxmServiceList (string code, string authorization) { ApiResponse> localVarResponse = LxmServiceGetTopLxmServiceListWithHttpInfo(code, authorization); return localVarResponse.Data; } /// /// 根据编码得到非套餐服务列表 /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// ApiResponse of List<LxmServiceResp> public ApiResponse< List > LxmServiceGetTopLxmServiceListWithHttpInfo (string code, string authorization) { // verify the required parameter 'code' is set if (code == null) throw new ApiException(400, "Missing required parameter 'code' when calling LxmServiceApi->LxmServiceGetTopLxmServiceList"); // verify the required parameter 'authorization' is set if (authorization == null) throw new ApiException(400, "Missing required parameter 'authorization' when calling LxmServiceApi->LxmServiceGetTopLxmServiceList"); var localVarPath = "/api/Admin/LxmService/GetTopLxmServiceList"; var localVarPathParams = new Dictionary(); var localVarQueryParams = new List>(); var localVarHeaderParams = new Dictionary(this.Configuration.DefaultHeader); var localVarFormParams = new Dictionary(); var localVarFileParams = new Dictionary(); Object localVarPostBody = null; // to determine the Content-Type header String[] localVarHttpContentTypes = new String[] { }; String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes); // to determine the Accept header String[] localVarHttpHeaderAccepts = new String[] { "application/json", "text/json", "application/xml", "text/xml" }; String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts); if (localVarHttpHeaderAccept != null) localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept); if (code != null) localVarQueryParams.AddRange(this.Configuration.ApiClient.ParameterToKeyValuePairs("", "code", code)); // query parameter if (authorization != null) localVarHeaderParams.Add("Authorization", this.Configuration.ApiClient.ParameterToString(authorization)); // header parameter // make the HTTP request IRestResponse localVarResponse = (IRestResponse) this.Configuration.ApiClient.CallApi(localVarPath, Method.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int) localVarResponse.StatusCode; if (ExceptionFactory != null) { Exception exception = ExceptionFactory("LxmServiceGetTopLxmServiceList", localVarResponse); if (exception != null) throw exception; } return new ApiResponse>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (List) this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(List))); } /// /// 根据编码得到非套餐服务列表 /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// Task of List<LxmServiceResp> public async System.Threading.Tasks.Task> LxmServiceGetTopLxmServiceListAsync (string code, string authorization) { ApiResponse> localVarResponse = await LxmServiceGetTopLxmServiceListAsyncWithHttpInfo(code, authorization); return localVarResponse.Data; } /// /// 根据编码得到非套餐服务列表 /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// Task of ApiResponse (List<LxmServiceResp>) public async System.Threading.Tasks.Task>> LxmServiceGetTopLxmServiceListAsyncWithHttpInfo (string code, string authorization) { // verify the required parameter 'code' is set if (code == null) throw new ApiException(400, "Missing required parameter 'code' when calling LxmServiceApi->LxmServiceGetTopLxmServiceList"); // verify the required parameter 'authorization' is set if (authorization == null) throw new ApiException(400, "Missing required parameter 'authorization' when calling LxmServiceApi->LxmServiceGetTopLxmServiceList"); var localVarPath = "/api/Admin/LxmService/GetTopLxmServiceList"; var localVarPathParams = new Dictionary(); var localVarQueryParams = new List>(); var localVarHeaderParams = new Dictionary(this.Configuration.DefaultHeader); var localVarFormParams = new Dictionary(); var localVarFileParams = new Dictionary(); Object localVarPostBody = null; // to determine the Content-Type header String[] localVarHttpContentTypes = new String[] { }; String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes); // to determine the Accept header String[] localVarHttpHeaderAccepts = new String[] { "application/json", "text/json", "application/xml", "text/xml" }; String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts); if (localVarHttpHeaderAccept != null) localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept); if (code != null) localVarQueryParams.AddRange(this.Configuration.ApiClient.ParameterToKeyValuePairs("", "code", code)); // query parameter if (authorization != null) localVarHeaderParams.Add("Authorization", this.Configuration.ApiClient.ParameterToString(authorization)); // header parameter // make the HTTP request IRestResponse localVarResponse = (IRestResponse) await this.Configuration.ApiClient.CallApiAsync(localVarPath, Method.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int) localVarResponse.StatusCode; if (ExceptionFactory != null) { Exception exception = ExceptionFactory("LxmServiceGetTopLxmServiceList", localVarResponse); if (exception != null) throw exception; } return new ApiResponse>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (List) this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(List))); } /// /// 得到前10条套装商品 /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// List<NcSuiteGoodsResp> public List LxmServiceGetTopNcSuiteServiceList (string code, string authorization) { ApiResponse> localVarResponse = LxmServiceGetTopNcSuiteServiceListWithHttpInfo(code, authorization); return localVarResponse.Data; } /// /// 得到前10条套装商品 /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// ApiResponse of List<NcSuiteGoodsResp> public ApiResponse< List > LxmServiceGetTopNcSuiteServiceListWithHttpInfo (string code, string authorization) { // verify the required parameter 'code' is set if (code == null) throw new ApiException(400, "Missing required parameter 'code' when calling LxmServiceApi->LxmServiceGetTopNcSuiteServiceList"); // verify the required parameter 'authorization' is set if (authorization == null) throw new ApiException(400, "Missing required parameter 'authorization' when calling LxmServiceApi->LxmServiceGetTopNcSuiteServiceList"); var localVarPath = "/api/Admin/LxmService/GetTopNcSuiteServiceList"; var localVarPathParams = new Dictionary(); var localVarQueryParams = new List>(); var localVarHeaderParams = new Dictionary(this.Configuration.DefaultHeader); var localVarFormParams = new Dictionary(); var localVarFileParams = new Dictionary(); Object localVarPostBody = null; // to determine the Content-Type header String[] localVarHttpContentTypes = new String[] { }; String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes); // to determine the Accept header String[] localVarHttpHeaderAccepts = new String[] { "application/json", "text/json", "application/xml", "text/xml" }; String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts); if (localVarHttpHeaderAccept != null) localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept); if (code != null) localVarQueryParams.AddRange(this.Configuration.ApiClient.ParameterToKeyValuePairs("", "code", code)); // query parameter if (authorization != null) localVarHeaderParams.Add("Authorization", this.Configuration.ApiClient.ParameterToString(authorization)); // header parameter // make the HTTP request IRestResponse localVarResponse = (IRestResponse) this.Configuration.ApiClient.CallApi(localVarPath, Method.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int) localVarResponse.StatusCode; if (ExceptionFactory != null) { Exception exception = ExceptionFactory("LxmServiceGetTopNcSuiteServiceList", localVarResponse); if (exception != null) throw exception; } return new ApiResponse>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (List) this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(List))); } /// /// 得到前10条套装商品 /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// Task of List<NcSuiteGoodsResp> public async System.Threading.Tasks.Task> LxmServiceGetTopNcSuiteServiceListAsync (string code, string authorization) { ApiResponse> localVarResponse = await LxmServiceGetTopNcSuiteServiceListAsyncWithHttpInfo(code, authorization); return localVarResponse.Data; } /// /// 得到前10条套装商品 /// /// Thrown when fails to make API call /// 编码 /// 访问令牌 /// Task of ApiResponse (List<NcSuiteGoodsResp>) public async System.Threading.Tasks.Task>> LxmServiceGetTopNcSuiteServiceListAsyncWithHttpInfo (string code, string authorization) { // verify the required parameter 'code' is set if (code == null) throw new ApiException(400, "Missing required parameter 'code' when calling LxmServiceApi->LxmServiceGetTopNcSuiteServiceList"); // verify the required parameter 'authorization' is set if (authorization == null) throw new ApiException(400, "Missing required parameter 'authorization' when calling LxmServiceApi->LxmServiceGetTopNcSuiteServiceList"); var localVarPath = "/api/Admin/LxmService/GetTopNcSuiteServiceList"; var localVarPathParams = new Dictionary(); var localVarQueryParams = new List>(); var localVarHeaderParams = new Dictionary(this.Configuration.DefaultHeader); var localVarFormParams = new Dictionary(); var localVarFileParams = new Dictionary(); Object localVarPostBody = null; // to determine the Content-Type header String[] localVarHttpContentTypes = new String[] { }; String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes); // to determine the Accept header String[] localVarHttpHeaderAccepts = new String[] { "application/json", "text/json", "application/xml", "text/xml" }; String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts); if (localVarHttpHeaderAccept != null) localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept); if (code != null) localVarQueryParams.AddRange(this.Configuration.ApiClient.ParameterToKeyValuePairs("", "code", code)); // query parameter if (authorization != null) localVarHeaderParams.Add("Authorization", this.Configuration.ApiClient.ParameterToString(authorization)); // header parameter // make the HTTP request IRestResponse localVarResponse = (IRestResponse) await this.Configuration.ApiClient.CallApiAsync(localVarPath, Method.GET, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int) localVarResponse.StatusCode; if (ExceptionFactory != null) { Exception exception = ExceptionFactory("LxmServiceGetTopNcSuiteServiceList", localVarResponse); if (exception != null) throw exception; } return new ApiResponse>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), (List) this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(List))); } } }