Class PaymentProductField
Inherited Members
Namespace: Ingenico.Connect.Sdk.Domain.Product.Definitions
Assembly: connect-sdk-dotnet.dll
Syntax
public class PaymentProductField
Properties
DataRestrictions
Object containing data restrictions that apply to this field, like minimum and/or maximum length
Declaration
public PaymentProductFieldDataRestrictions DataRestrictions { get; set; }
Property Value
Type | Description |
---|---|
PaymentProductFieldDataRestrictions |
DisplayHints
Object containing display hints for this field, like the order, mask, preferred keyboard
Declaration
public PaymentProductFieldDisplayHints DisplayHints { get; set; }
Property Value
Type | Description |
---|---|
PaymentProductFieldDisplayHints |
Id
The ID of the field
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
The type of field, possible values are:
- string - Any UTF-8 chracters
- numericstring - A string that consisting only of numbers. Note that you should strip out anything that is not a digit, but leading zeros are allowed
- date - Date in the format DDMMYYYY
- expirydate - Expiration date in the format MMYY
- integer - An integer
- boolean - A boolean
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
string |
UsedForLookup
Indicates that the product can be used in a get customer details call and that when that call is done the field should be supplied as (one of the) key(s) with a valid value.
Declaration
public bool? UsedForLookup { get; set; }
Property Value
Type | Description |
---|---|
bool? |