Class: Google::Apis::CloudsearchV1::SearchItemsByViewUrlRequest
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::SearchItemsByViewUrlRequest
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Instance Attribute Summary collapse
-
#debug_options ⇒ Google::Apis::CloudsearchV1::DebugOptions
Shared request debug options for all cloudsearch RPC methods.
-
#page_token ⇒ String
The next_page_token value returned from a previous request, if any.
-
#view_url ⇒ String
Specify the full view URL to find the corresponding item.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchItemsByViewUrlRequest
constructor
A new instance of SearchItemsByViewUrlRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SearchItemsByViewUrlRequest
Returns a new instance of SearchItemsByViewUrlRequest.
7002 7003 7004 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 7002 def initialize(**args) update!(**args) end |
Instance Attribute Details
#debug_options ⇒ Google::Apis::CloudsearchV1::DebugOptions
Shared request debug options for all cloudsearch RPC methods.
Corresponds to the JSON property debugOptions
6989 6990 6991 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6989 def @debug_options end |
#page_token ⇒ String
The next_page_token value returned from a previous request, if any.
Corresponds to the JSON property pageToken
6994 6995 6996 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6994 def page_token @page_token end |
#view_url ⇒ String
Specify the full view URL to find the corresponding item. The maximum length
is 2048 characters.
Corresponds to the JSON property viewUrl
7000 7001 7002 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 7000 def view_url @view_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7007 7008 7009 7010 7011 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 7007 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 |