WallBee.ProductFee.Client 0.0.0.4

dotnet add package WallBee.ProductFee.Client --version 0.0.0.4
NuGet\Install-Package WallBee.ProductFee.Client -Version 0.0.0.4
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="WallBee.ProductFee.Client" Version="0.0.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WallBee.ProductFee.Client --version 0.0.0.4
#r "nuget: WallBee.ProductFee.Client, 0.0.0.4"
#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 WallBee.ProductFee.Client as a Cake Addin
#addin nuget:?package=WallBee.ProductFee.Client&version=0.0.0.4

// Install WallBee.ProductFee.Client as a Cake Tool
#tool nuget:?package=WallBee.ProductFee.Client&version=0.0.0.4

Summary

Client Hub is under active development. Functionality and documentation may change without notice.

Client Hub provides programmatic access to several Wall Fee Api endpoints. This hub has eight different modules/services where each of them consists of one or more methods. All methods of every services return OperationResult<TResult>

OperationResult<TResult>

This class is a return type for all functions in each services.

  • Class Structure
    • public Exception Exception { get; set; }
      • Exception will be set if there is any exception occurred during the operation.
    • public HttpStatusCode Status { get; set; }
      • Status will be either 202 (Accepted) or 503 (ServiceUnavailable)
    • public TResult Result { get; set; }
      • Result will be set to required data values if operation is succeeded or set to either null or empty data type value if error occurred.

Client Hub Modules

Namespace :

  • Client.ProductFee.Hub
  • Initialize Parameters :
  • new Carrier (Guid applicationId, string authToken, HttpClient httpClient);
    • applicationId → Application Id of the current client application. Value cannot be null or empty GUID.
    • authToken → Authentication token to get access to carrier endpoints. Value cannot be null or empty string.
    • httpClient → Object of HttpClient. Client has control over http client object. Value cannot be null.
  • Modules
    • Carrier
    • Dangerous Goods
    • Email
    • Fee
    • Fee Types
    • Price Line
    • Product
    • Return Services

Example : Return Services

Initialize

  • new ReturnService (Guid applicationId, string authToken, HttpClient httpClient)
    • applicationId → Application Id of the current client application. Value cannot be null or empty GUID.
    • authToken → Authentication token to get access to ReturnService endpoints. Value cannot be null or empty string.
    • httpClient → Object of HttpClient. Client has control over http client object. Value cannot be null.

Available Methods

  • public async Task<OperationResult<IList<ReturnServiceVM>>> All ()
    • Gets all Return Service data
    • Returns : OperationResult<IList<ReturnServiceVM>>
      • OperationResult with list of ReturnService models
  • public async Task<OperationResult<ReturnServiceVM>> GetById (int id)
    • Gets ReturnService data from ReturnService Id provided
    • Params : id (int)
      • ReturnServiceId (primary key of ReturnService)
    • Returns : OperationResult<ReturnServiceVM>
      • OperationResult with ReturnService model
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 is compatible.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
0.0.0.4 527 12/17/2019
0.0.0.3 590 11/21/2019
0.0.0.2 586 9/5/2019
0.0.0.1 565 9/2/2019