{"id":18051709,"url":"https://github.com/apimatic/core-lib-csharp","last_synced_at":"2025-04-10T18:15:09.405Z","repository":{"id":68154864,"uuid":"553553845","full_name":"apimatic/core-lib-csharp","owner":"apimatic","description":"This project contains core logic and the utilities for the APIMatic's C# SDK","archived":false,"fork":false,"pushed_at":"2025-03-01T19:26:07.000Z","size":1720,"stargazers_count":1,"open_issues_count":12,"forks_count":3,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-24T15:52:31.674Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/apimatic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-10-18T11:50:31.000Z","updated_at":"2025-02-27T10:51:41.000Z","dependencies_parsed_at":"2023-12-23T04:20:36.400Z","dependency_job_id":"ca5acc9a-3fc2-40dc-822d-963afd1bca2b","html_url":"https://github.com/apimatic/core-lib-csharp","commit_stats":null,"previous_names":[],"tags_count":29,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apimatic%2Fcore-lib-csharp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apimatic%2Fcore-lib-csharp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apimatic%2Fcore-lib-csharp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apimatic%2Fcore-lib-csharp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apimatic","download_url":"https://codeload.github.com/apimatic/core-lib-csharp/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248269602,"owners_count":21075783,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-30T22:55:09.190Z","updated_at":"2025-04-10T18:15:09.389Z","avatar_url":"https://github.com/apimatic.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# APIMatic Core Library for C#\n\n[![Version][nuget-version]][nuget-url]\n[![Build \u0026 Tests][test-badge]][test-url]\n[![Test Coverage][coverage-badge]][coverage-url]\n[![Maintainability][maintainability-badge]][maintainability-url]\n[![Licence][license-badge]][license-url]\n\n## Introduction\n\nThis project contains core logic and the utilities for the APIMatic's C# SDK\n\n## Important Classes\n\n| Name                                                                                                           | Description                                                                                                        |\n|----------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|\n| [`AdditionalFormParams`](APIMatic.Core/Request/Parameters/AdditionalFormParams.cs)                             | Used to add additional form params to a request                                                                    |\n| [`AdditionalHeaderParams`](APIMatic.Core/Request/Parameters/AdditionalHeaderParams.cs)                         | Used to add additional header params to a request                                                                  |\n| [`AdditionalQueryParams`](APIMatic.Core/Request/Parameters/AdditionalQueryParams.cs)                           | Used to add additional query params to a request                                                                   |\n| [`BodyParam`](APIMatic.Core/Request/Parameters/BodyParam.cs)                                                   | Body parameter class                                                                                               |\n| [`FormParam`](APIMatic.Core/Request/Parameters/FormParam.cs)                                                   | Form parameter class                                                                                               |\n| [`HeaderParam`](APIMatic.Core/Request/Parameters/HeaderParam.cs)                                               | Header parameter class                                                                                             |\n| [`QueryParam`](APIMatic.Core/Request/Parameters/QueryParam.cs)                                                 | Query parameter class                                                                                              |\n| [`TemplateParam`](APIMatic.Core/Request/Parameters/TemplateParam.cs)                                           | Template parameter class                                                                                           |\n| [`RequestBuilder`](APIMatic.Core/Request/RequestBuilder.cs)                                                    | Used to instantiate a new Request object with the provided properties                                              |\n| [`ErrorCase`](APIMatic.Core/Response/ErrorCase.cs)                                                             | Used to generate an ApiException from the HttpClient response                                                      |\n| [`ResponseHandler`](APIMatic.Core/Response/ResponseHandler.cs)                                                 | Used to handle and process the response from HttpClient                                                            |\n| [`ApiCall`](APIMatic.Core/ApiCall.cs)                                                                          | Deals with the execution of request created from RequestBuilder and processes the response through ResponseHandler |\n| [`GlobalConfiguration`](APIMatic.Core/GlobalConfiguration.cs)                                                  | Carries the common configuration that will be applicable to all the ApiCalls                                       |\n| [`SdkLogger`](APIMatic.Core//Utilities/Logger/SdkLogger.cs)                                                    | Provides logging functionality for SDK operations                                                                  |\n| [`ConsoleLogger`](APIMatic.Core//Utilities/Logger/ConsoleLogger.cs)                                            | Represents a logger implementation that writes log messages to the console                                         |\n| [`SdkLoggingConfiguration`](APIMatic.Core/Utilities/Logger/Configuration/SdkLoggingConfiguration.cs)           | Represents the configuration settings for SDK logging                                                              |\n| [`HttpLoggingConfiguration`](APIMatic.Core/Utilities/Logger/Configuration/HttpLoggingConfiguration.cs)         | Abstract class representing configuration settings for HTTP request/response logging                               |\n| [`RequestLoggingConfiguration`](APIMatic.Core/Utilities/Logger/Configuration/RequestLoggingConfiguration.cs)   | Represents the configuration settings for logging HTTP responses                                                   |\n| [`ResponseLoggingConfiguration`](APIMatic.Core/Utilities/Logger/Configuration/ResponseLoggingConfiguration.cs) | Carries the common configuration that will be applicable to all the ApiCalls                                       |\n\n[nuget-url]: https://www.nuget.org/packages/APIMatic.Core\n\n[nuget-version]: https://img.shields.io/nuget/v/APIMatic.Core\n\n[nuget-downloads]: https://img.shields.io/nuget/dt/APIMatic.Core\n\n[test-badge]: https://github.com/apimatic/core-lib-csharp/actions/workflows/test.yml/badge.svg\n\n[test-url]: https://github.com/apimatic/core-lib-csharp/actions/workflows/test.yml\n\n[coverage-badge]: https://api.codeclimate.com/v1/badges/d613a5f73f605369e745/test_coverage\n\n[coverage-url]: https://codeclimate.com/github/apimatic/core-lib-csharp/test_coverage\n\n[maintainability-badge]: https://api.codeclimate.com/v1/badges/d613a5f73f605369e745/maintainability\n\n[maintainability-url]: https://codeclimate.com/github/apimatic/core-lib-csharp/maintainability\n\n[license-badge]: https://img.shields.io/badge/licence-MIT-blue\n\n[license-url]: LICENSE\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapimatic%2Fcore-lib-csharp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapimatic%2Fcore-lib-csharp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapimatic%2Fcore-lib-csharp/lists"}