Class IdempotenceException
  Represents an error response from the Ingenico ePayments platform when an idempotent request failed because the first request has not finished yet.
 
  
  
    Inheritance
    
    
    
    IdempotenceException
   
  
  
  Namespace: Ingenico.Connect.Sdk
  Assembly: connect-sdk-dotnet.dll
  Syntax
  
    public class IdempotenceException : ApiException, ISerializable, _Exception
   
  Constructors
  
  IdempotenceException(string, long?, HttpStatusCode, string, string, IList<APIError>)
  
  
  Declaration
  
    public IdempotenceException(string idempotenceKey, long? idempotenceRequestTimestamp, HttpStatusCode statusCode, string responseBody, string errorId, IList<APIError> errors)
   
  Parameters
  
  
  IdempotenceException(string, long?, string, HttpStatusCode, string, string, IList<APIError>)
  
  
  Declaration
  
    public IdempotenceException(string idempotenceKey, long? idempotenceRequestTimestamp, string message, HttpStatusCode statusCode, string responseBody, string errorId, IList<APIError> errors)
   
  Parameters
  
  Properties
  
  IdempotenceKey
  Gets the key that was used for the idempotent request.
 
  
  Declaration
  
    public string IdempotenceKey { get; }
   
  Property Value
  
  
  IdempotenceRequestTimestamp
  Gets the request timestamp of the first idempotent request with the same key.
 
  
  Declaration
  
    public long? IdempotenceRequestTimestamp { get; }
   
  Property Value
  
  Implements