Class: Google::Apis::CloudsearchV1::SearchItemsByViewUrlRequest

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchItemsByViewUrlRequest

Returns a new instance of SearchItemsByViewUrlRequest.



3936
3937
3938
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3936

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

Instance Attribute Details

#debug_optionsGoogle::Apis::CloudsearchV1::DebugOptions

Shared request debug options for all cloudsearch RPC methods. Corresponds to the JSON property debugOptions



3923
3924
3925
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3923

def debug_options
  @debug_options
end

#page_tokenString

The next_page_token value returned from a previous request, if any. Corresponds to the JSON property pageToken

Returns:

  • (String)


3928
3929
3930
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3928

def page_token
  @page_token
end

#view_urlString

Specify the full view URL to find the corresponding item. The maximum length is 2048 characters. Corresponds to the JSON property viewUrl

Returns:

  • (String)


3934
3935
3936
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3934

def view_url
  @view_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3941
3942
3943
3944
3945
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 3941

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