class Google::Apis::GmailpostmastertoolsV1::IpReputation
IP Reputation information for a set of IPs in a specific reputation category.
Attributes
ip_count[RW]
Total number of unique IPs in this reputation category. This metric only pertains to traffic that passed [SPF](www.openspf.org/) or [DKIM](http:/ /www.dkim.org/). Corresponds to the JSON property `ipCount` @return [Fixnum]
reputation[RW]
The reputation category this IP reputation represents. Corresponds to the JSON property `reputation` @return [String]
sample_ips[RW]
A sample of IPs in this reputation category. Corresponds to the JSON property `sampleIps` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/gmailpostmastertools_v1/classes.rb, line 137 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/gmailpostmastertools_v1/classes.rb, line 142 def update!(**args) @ip_count = args[:ip_count] if args.key?(:ip_count) @reputation = args[:reputation] if args.key?(:reputation) @sample_ips = args[:sample_ips] if args.key?(:sample_ips) end