/n software 3-D Secure V2 Python Edition

Questions / Feedback?

cardholder_home_phone Property

The cardholder home phone number.

Syntax

def get_cardholder_home_phone() -> str: ...
def set_cardholder_home_phone(value: str) -> None: ...

cardholder_home_phone = property(get_cardholder_home_phone, set_cardholder_home_phone)

Default Value

""

Remarks

This field contains the home phone number provided by the card holder.

Phone numbers must be specified in the following format: CountryCode-Subscriber (e.g. 1-1234567899)

The "-" is used to separate the "Country Code" and "Subscriber" sections. The values are then formatted according to the EMVCo specification (a JSON object) in the request like so:


  "homePhone": {
    "cc": "1",
    "subscriber": "1234567899"
  }

Copyright (c) 2022 /n software inc. - All rights reserved.
/n software 3-D Secure V2 Python Edition - Version 2.2 [Build 8318]