@@ -634,6 +634,14 @@ class Traits(Record):
634634
635635 :type: str
636636
637+ .. attribute:: is_anycast
638+
639+ This is true if the IP address is anycast.
640+ This attribute is available from the Country, City Plus, Insights
641+ web services and the Country, City, Enterprise databases.
642+
643+ :type: bool
644+
637645 .. attribute:: is_anonymous
638646
639647 This is true if the IP address belongs to any sort of anonymous network.
@@ -815,6 +823,7 @@ class Traits(Record):
815823 autonomous_system_organization : Optional [str ]
816824 connection_type : Optional [str ]
817825 domain : Optional [str ]
826+ is_anycast : bool
818827 is_anonymous : bool
819828 is_anonymous_proxy : bool
820829 is_anonymous_vpn : bool
@@ -841,6 +850,7 @@ def __init__(
841850 autonomous_system_organization : Optional [str ] = None ,
842851 connection_type : Optional [str ] = None ,
843852 domain : Optional [str ] = None ,
853+ is_anycast : bool = False ,
844854 is_anonymous : bool = False ,
845855 is_anonymous_proxy : bool = False ,
846856 is_anonymous_vpn : bool = False ,
@@ -866,6 +876,7 @@ def __init__(
866876 self .autonomous_system_organization = autonomous_system_organization
867877 self .connection_type = connection_type
868878 self .domain = domain
879+ self .is_anycast = is_anycast
869880 self .is_anonymous = is_anonymous
870881 self .is_anonymous_proxy = is_anonymous_proxy
871882 self .is_anonymous_vpn = is_anonymous_vpn
0 commit comments