Class PaymentCreationOutput
Inherited Members
Namespace: Ingenico.Connect.Sdk.Domain.Payment.Definitions
Assembly: connect-sdk-dotnet.dll
Syntax
public class PaymentCreationOutput : PaymentCreationReferences
Properties
IsCheckedRememberMe
Indicates whether the customer ticked the "Remember my details for future purchases" checkbox on the MyCheckout hosted payment pages
Declaration
public bool? IsCheckedRememberMe { get; set; }
Property Value
Type | Description |
---|---|
bool? |
IsNewToken
Indicates if a new token was created
- true - A new token was created
- false - A token with the same card number already exists and is returned. Please note that the existing token has not been updated. When you want to update other data then the card number, you need to update data stored in the token explicitly, as data is never updated during the creation of a token.
Declaration
public bool? IsNewToken { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Token
ID of the token
Declaration
public string Token { get; set; }
Property Value
Type | Description |
---|---|
string |
TokenizationSucceeded
Indicates if tokenization was successful or not. If this value is false, then the token and isNewToken properties will not be set.
Declaration
public bool? TokenizationSucceeded { get; set; }
Property Value
Type | Description |
---|---|
bool? |