UNPKG
akua-sdk
Version:
latest (1.1.5)
1.1.5
1.1.4
1.0.2
1.0.1
1.0.0
TypeScript SDK for Akua Acquiring Processor
akua-la/akua-node-sdk
akua-sdk
/
dist
/
types
/
dtos
/
instrument
/
card-data.dto.d.ts
10 lines
(9 loc)
•
306 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
BinDataDTO
}
from
'./'
;
export
declare
class
CardDataDTO
{
readonly
last_four_digits
:
string
;
readonly
issuer_identification_number
:
string
;
readonly
holder_name
:
string
;
readonly
expiration_month
:
string
;
readonly
expiration_year
:
string
;
readonly
bin_data
:
BinDataDTO
; }