Class: Google::Apis::AlertcenterV1beta1::AlertFeedback

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/alertcenter_v1beta1/classes.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb

Overview

A customer feedback about an alert.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AlertFeedback

Returns a new instance of AlertFeedback



192
193
194
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 192

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#alert_idString

Output only. The alert identifier. Corresponds to the JSON property alertId

Returns:

  • (String)


164
165
166
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 164

def alert_id
  @alert_id
end

#create_timeString

Output only. The time this feedback was created. Assigned by the server. Corresponds to the JSON property createTime

Returns:

  • (String)


169
170
171
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 169

def create_time
  @create_time
end

#customer_idString

Output only. The unique identifier of the Google account of the customer. Corresponds to the JSON property customerId

Returns:

  • (String)


174
175
176
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 174

def customer_id
  @customer_id
end

#emailString

Output only. The email of the user that provided the feedback. Corresponds to the JSON property email

Returns:

  • (String)


179
180
181
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 179

def email
  @email
end

#feedback_idString

Output only. A unique identifier for the feedback. When creating a new feedback the system will assign one. Corresponds to the JSON property feedbackId

Returns:

  • (String)


185
186
187
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 185

def feedback_id
  @feedback_id
end

#typeString

Required. The type of the feedback. Corresponds to the JSON property type

Returns:

  • (String)


190
191
192
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 190

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



197
198
199
200
201
202
203
204
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 197

def update!(**args)
  @alert_id = args[:alert_id] if args.key?(:alert_id)
  @create_time = args[:create_time] if args.key?(:create_time)
  @customer_id = args[:customer_id] if args.key?(:customer_id)
  @email = args[:email] if args.key?(:email)
  @feedback_id = args[:feedback_id] if args.key?(:feedback_id)
  @type = args[:type] if args.key?(:type)
end