Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedbackFeedbackContext

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

Overview

FeedbackContext captures the intent of the submitted feedback.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1SecurityFeedbackFeedbackContext

Returns a new instance of GoogleCloudApigeeV1SecurityFeedbackFeedbackContext.



11364
11365
11366
# File 'lib/google/apis/apigee_v1/classes.rb', line 11364

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

Instance Attribute Details

#attributeString

Required. The attribute the user is providing feedback about. Corresponds to the JSON property attribute

Returns:

  • (String)


11357
11358
11359
# File 'lib/google/apis/apigee_v1/classes.rb', line 11357

def attribute
  @attribute
end

#valuesArray<String>

Required. The values of the attribute the user is providing feedback about. Corresponds to the JSON property values

Returns:

  • (Array<String>)


11362
11363
11364
# File 'lib/google/apis/apigee_v1/classes.rb', line 11362

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11369
11370
11371
11372
# File 'lib/google/apis/apigee_v1/classes.rb', line 11369

def update!(**args)
  @attribute = args[:attribute] if args.key?(:attribute)
  @values = args[:values] if args.key?(:values)
end