class Google::Apis::GmailpostmastertoolsV1::FeedbackLoop

[Feedback loop](support.google.com/mail/answer/6254652) identifier information.

Attributes

id[RW]

Feedback loop identifier that uniquely identifies individual campaigns. Corresponds to the JSON property `id` @return [String]

spam_ratio[RW]

The ratio of user marked spam messages with the identifier vs the total number of inboxed messages with that identifier. Corresponds to the JSON property `spamRatio` @return [Float]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/gmailpostmastertools_v1/classes.rb, line 105
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 110
def update!(**args)
  @id = args[:id] if args.key?(:id)
  @spam_ratio = args[:spam_ratio] if args.key?(:spam_ratio)
end