Schick.TimeTracking.Report.Client 1.3.3

dotnet add package Schick.TimeTracking.Report.Client --version 1.3.3
NuGet\Install-Package Schick.TimeTracking.Report.Client -Version 1.3.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Schick.TimeTracking.Report.Client" Version="1.3.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Schick.TimeTracking.Report.Client --version 1.3.3
#r "nuget: Schick.TimeTracking.Report.Client, 1.3.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Schick.TimeTracking.Report.Client as a Cake Addin
#addin nuget:?package=Schick.TimeTracking.Report.Client&version=1.3.3

// Install Schick.TimeTracking.Report.Client as a Cake Tool
#tool nuget:?package=Schick.TimeTracking.Report.Client&version=1.3.3

FS.TimeTracking.Report.Client - the C# library for the Time Tracking Report Server Report API

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

This C# SDK is automatically generated by the OpenAPI Generator project:

  • API version: v1
  • SDK version: 1.0.0
  • Build package: org.openapitools.codegen.languages.CSharpNetCoreClientCodegen

<a name="frameworks-supported"></a>

Frameworks supported

  • .NET Core >=1.0
  • .NET Framework >=4.6
  • Mono/Xamarin >=vNext

<a name="dependencies"></a>

Dependencies

The DLLs included in the package may not be the latest version. We recommend using NuGet to obtain the latest version of the packages:

Install-Package Newtonsoft.Json
Install-Package JsonSubTypes
Install-Package System.ComponentModel.Annotations

<a name="installation"></a>

Installation

Generate the DLL using your preferred tool (e.g. dotnet build)

Then include the DLL (under the bin folder) in the C# project, and use the namespaces:

using FS.TimeTracking.Report.Client.Api;
using FS.TimeTracking.Report.Client.Client;
using FS.TimeTracking.Report.Client.Model;

<a name="usage"></a>

Usage

To use the API client with a HTTP proxy, setup a System.Net.WebProxy

Configuration c = new Configuration();
System.Net.WebProxy webProxy = new System.Net.WebProxy("http://myProxyUrl:80/");
webProxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
c.Proxy = webProxy;

Connections

Each ApiClass (properly the ApiClient inside it) will create an instance of HttpClient. It will use that for the entire lifecycle and dispose it when called the Dispose method.

To better manager the connections it's a common practice to reuse the HttpClient and HttpClientHandler (see here for details). To use your own HttpClient instance just pass it to the ApiClass constructor.

HttpClientHandler yourHandler = new HttpClientHandler();
HttpClient yourHttpClient = new HttpClient(yourHandler);
var api = new YourApiClass(yourHttpClient, yourHandler);

If you want to use an HttpClient and don't have access to the handler, for example in a DI context in Asp.net Core when using IHttpClientFactory.

HttpClient yourHttpClient = new HttpClient();
var api = new YourApiClass(yourHttpClient);

You'll loose some configuration settings, the features affected are: Setting and Retrieving Cookies, Client Certificates, Proxy settings. You need to either manually handle those in your setup of the HttpClient or they won't be available.

Here an example of DI setup in a sample web project:

services.AddHttpClient<YourApiClass>(httpClient =>
   new PetApi(httpClient));

<a name="getting-started"></a>

Getting Started

using System.Collections.Generic;
using System.Diagnostics;
using System.Net.Http;
using FS.TimeTracking.Report.Client.Api;
using FS.TimeTracking.Report.Client.Client;
using FS.TimeTracking.Report.Client.Model;

namespace Example
{
    public class Example
    {
        public static void Main()
        {

            Configuration config = new Configuration();
            config.BasePath = "http://localhost";
            // create instances of HttpClient, HttpClientHandler to be reused later with different Api classes
            HttpClient httpClient = new HttpClient();
            HttpClientHandler httpClientHandler = new HttpClientHandler();
            var apiInstance = new ActivityReportApi(httpClient, config, httpClientHandler);
            var activityReportDto = new ActivityReportDto(); // ActivityReportDto | Source for the report. (optional) 

            try
            {
                // Generates an activity report.
                byte[] result = apiInstance.ActivityReportGenerateActivityReport(activityReportDto);
                Debug.WriteLine(result);
            }
            catch (ApiException e)
            {
                Debug.Print("Exception when calling ActivityReportApi.ActivityReportGenerateActivityReport: " + e.Message );
                Debug.Print("Status Code: "+ e.ErrorCode);
                Debug.Print(e.StackTrace);
            }

        }
    }
}

<a name="documentation-for-api-endpoints"></a>

Documentation for API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description
ActivityReportApi ActivityReportGenerateActivityReport POST /api/report/v1/ActivityReport/GenerateActivityReport Generates an activity report.
ActivityReportApi ActivityReportGenerateActivityReportPreview POST /api/report/v1/ActivityReport/GenerateActivityReportPreview Generates preview pages for detailed activity report.
InformationApi InformationGetProductCopyright GET /api/report/v1/Information/GetProductCopyright Gets the copyright for the product.
InformationApi InformationGetProductInformation GET /api/report/v1/Information/GetProductInformation Gets the name, version and copyright of the product.
InformationApi InformationGetProductName GET /api/report/v1/Information/GetProductName Gets the name of the product.
InformationApi InformationGetProductVersion GET /api/report/v1/Information/GetProductVersion Gets the product version.

<a name="documentation-for-models"></a>

Documentation for Models

<a name="documentation-for-authorization"></a>

Documentation for Authorization

All endpoints do not require authorization.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.3 223 5/17/2023
1.3.2 123 5/13/2023
1.3.1 192 4/27/2023
1.3.0 128 4/26/2023
1.2.2 267 2/4/2023
1.2.1 269 1/4/2023
1.2.0 327 11/6/2022
1.1.0 324 10/25/2022
1.0.1 331 10/1/2022
1.0.0 425 9/6/2022