London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Class TokenizedRequest

NOTE: This is a pre-release API that is UNSTABLE and might not satisfy the compatibility requirements as denoted by its associated normal version.

Represents a tokenized request will pass through Tokenization Gateway to the 3rd-party.

Inheritance
System.Object
TokenizedRequest
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Commerce.Order.Payments.Tokenization
Assembly: EPiServer.Business.Commerce.dll
Version: 13.30.0
Syntax
public class TokenizedRequest

Constructors

TokenizedRequest()

Declaration
public TokenizedRequest()

Properties

Data

The tokenized data which will be passed through Tokenization Gateway to the 3rd-party. Tokenization Gateway will replace the token with its corresponding sensitive data before forwarding to the 3rd-party.

Declaration
public string Data { get; set; }
Property Value
Type Description
System.String

DataFormat

The tokenized data format, ie: text/xml, json...

Declaration
public string DataFormat { get; set; }
Property Value
Type Description
System.String

Endpoint

The 3rd-party endpoint URL to which the tokenization gateway should POST the detokenized request.

Declaration
public string Endpoint { get; set; }
Property Value
Type Description
System.String