@@ -509,6 +509,14 @@ class Phone(_Serializable):
509509 ``False`` when the number is not VoIP. If the phone number was not
510510 provided or we do not have data for it, the property will be ``None``."""
511511
512+ matches_postal : Optional [bool ]
513+ """This is ``True`` if the phone number's area code is commonly associated
514+ with the corresponding postal code. It is ``False``` if the area code is
515+ not associated with the postal code. It is only non-``None`` when the
516+ phone number is in the US and the postal code and country are provided in
517+ the request.
518+ """
519+
512520 network_operator : Optional [str ]
513521 """The name of the original network operator associated with the phone
514522 number. This field does not reflect phone numbers that have been ported
@@ -524,13 +532,15 @@ def __init__(
524532 * ,
525533 country : Optional [str ] = None ,
526534 is_voip : Optional [bool ] = None ,
535+ matches_postal : Optional [bool ] = None ,
527536 network_operator : Optional [str ] = None ,
528537 number_type : Optional [str ] = None ,
529538 ** _ ,
530539 ) -> None :
531540 """Initialize a Phone instance."""
532541 self .country = country
533542 self .is_voip = is_voip
543+ self .matches_postal = matches_postal
534544 self .network_operator = network_operator
535545 self .number_type = number_type
536546
0 commit comments