class Google::Apis::GmailpostmastertoolsV1::DeliveryError
Metric on a particular delivery error type.
Attributes
error_class[RW]
The class of delivery error. Corresponds to the JSON property `errorClass` @return [String]
error_ratio[RW]
The ratio of messages where the error occurred vs all authenticated traffic. Corresponds to the JSON property `errorRatio` @return [Float]
error_type[RW]
The type of delivery error. Corresponds to the JSON property `errorType` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/gmailpostmastertools_v1/classes.rb, line 44 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 49 def update!(**args) @error_class = args[:error_class] if args.key?(:error_class) @error_ratio = args[:error_ratio] if args.key?(:error_ratio) @error_type = args[:error_type] if args.key?(:error_type) end