Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityFeedbackResponse

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

Response for ListSecurityFeedback

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1ListSecurityFeedbackResponse

Returns a new instance of GoogleCloudApigeeV1ListSecurityFeedbackResponse.



7325
7326
7327
# File 'lib/google/apis/apigee_v1/classes.rb', line 7325

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

Instance Attribute Details

#next_page_tokenString

A token that can be sent as page_token in ListSecurityFeedbackRequest to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


7318
7319
7320
# File 'lib/google/apis/apigee_v1/classes.rb', line 7318

def next_page_token
  @next_page_token
end

#security_feedbackArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback>

List of SecurityFeedback reports. Corresponds to the JSON property securityFeedback



7323
7324
7325
# File 'lib/google/apis/apigee_v1/classes.rb', line 7323

def security_feedback
  @security_feedback
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7330
7331
7332
7333
# File 'lib/google/apis/apigee_v1/classes.rb', line 7330

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