Table of Contents

Class ApiResponseInfo

Namespace
Textkernel.Tx.Models.API
Assembly
Textkernel.Tx.SDK.dll

Information/metadata for an individual REST API call.
See https://developer.textkernel.com/tx-platform/v10/overview/#http-status-codes

public class ApiResponseInfo : ApiResponseInfoLite
Inheritance
ApiResponseInfo
Inherited Members

Properties

ApiVersion

The version of the API

public string ApiVersion { get; set; }

Property Value

string

CustomerDetails

Information about the customer who made the API call

public AccountInfo CustomerDetails { get; set; }

Property Value

AccountInfo

EngineVersion

The version of the parsing engine

public string EngineVersion { get; set; }

Property Value

string

TotalElapsedMilliseconds

How long the transaction took on the server, in milliseconds.
If the transaction takes longer to complete on the client side, that extra duration is solely network latency.

public int TotalElapsedMilliseconds { get; set; }

Property Value

int

TransactionCost

How many credits the customer was charged for this transaction

public decimal TransactionCost { get; set; }

Property Value

decimal

TransactionId

The id for a specific API transaction. Use this when contacting service@textkernel.com about issues.

public string TransactionId { get; set; }

Property Value

string