class Google::Apis::CloudsearchV1::SearchItemsByViewUrlRequest
Attributes
debug_options[RW]
Shared request debug options for all cloudsearch RPC methods. Corresponds to the JSON property `debugOptions` @return [Google::Apis::CloudsearchV1::DebugOptions]
page_token[RW]
The next_page_token value returned from a previous request, if any. Corresponds to the JSON property `pageToken` @return [String]
view_url[RW]
Specify the full view URL to find the corresponding item. The maximum length is 2048 characters. Corresponds to the JSON property `viewUrl` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudsearch_v1/classes.rb, line 4107 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudsearch_v1/classes.rb, line 4112 def update!(**args) @debug_options = args[:debug_options] if args.key?(:debug_options) @page_token = args[:page_token] if args.key?(:page_token) @view_url = args[:view_url] if args.key?(:view_url) end