@@ -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 prefix is commonly
514+ associated with the postal code. It is ```False``` if the prefix is not
515+ associated with the postal code. It is non-```None``` only when the phone
516+ number is in the US, the number prefix is in our database, and the
517+ postal code and country are provided in 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