Card

interface Card {
    addressCity?: null | string;
    addressLine1?: null | string;
    addressLine2?: null | string;
    addressState?: null | string;
    addressZip?: null | string;
    addressZipCheck?: string;
    brand?: CardBrand;
    country?: null | string;
    created?: number;
    customer?: null | string;
    cvcCheck?: string;
    email?: null | string;
    expMonth?: number;
    expYear?: number;
    fingerprint?: string;
    id: string;
    last4?: string;
    metadata?: object;
    name?: null | string;
    object?: string;
    phone?: null | string;
    threeDSecureStatus?: string;
}

Properties

addressCity?: null | string

市区町村

Card

addressLine1?: null | string

番地など

Card

addressLine2?: null | string

建物名など

Card

addressState?: null | string

都道府県

Card

addressZip?: null | string

郵便番号

Card

addressZipCheck?: string

郵便番号存在チェックの結果

Card

brand?: CardBrand

Card

country?: null | string

2桁のISOコード(e.g. JP)

Card

created?: number

カード作成時のタイムスタンプ

Card

customer?: null | string

顧客オブジェクトのID

Card

cvcCheck?: string

CVCコードチェックの結果

Card

email?: null | string

メールアドレス 2024年8月以降、3Dセキュア認証の際にphoneまたはemailのデータ入力が求められます。

Card

expMonth?: number

有効期限月

Card

expYear?: number

有効期限年

Card

fingerprint?: string

このクレジットカード番号に紐づく値。 同一番号のカードからは同一の値が生成されることが保証されており、 トークン化の度にトークンIDは変わりますが、この値は変わりません。

Card

id: string

car_で始まり一意なオブジェクトを示す、最大32桁の文字列

Card

last4?: string

カード番号の下四桁

Card

metadata?: object

キーバリューの任意データ

Card

name?: null | string

カード保有者名

Card

object?: string

\"card\"の固定文字列

Card

phone?: null | string

E.164形式の電話番号 (e.g. 090-0123-4567(日本) => "+819001234567") 2024年8月以降、3Dセキュア認証の際にphoneまたはemailのデータ入力が求められます。

Card

threeDSecureStatus?: string

3Dセキュアの実施結果。 加盟店において3Dセキュアが有効でない等未実施の場合null。

Card