Class: Google::Shopping::Merchant::Reviews::V1beta::ProductReviewAttributes::ReviewLink
- Inherits:
-
Object
- Object
- Google::Shopping::Merchant::Reviews::V1beta::ProductReviewAttributes::ReviewLink
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/shopping/merchant/reviews/v1beta/productreviews_common.rb
Overview
The URI of the review landing page.
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#link ⇒ ::String
Optional.
-
#type ⇒ ::Google::Shopping::Merchant::Reviews::V1beta::ProductReviewAttributes::ReviewLink::Type
Optional.
Instance Attribute Details
#link ⇒ ::String
Returns Optional. The URI of the review landing page.
For example: http://www.example.com/review_5.html.
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'proto_docs/google/shopping/merchant/reviews/v1beta/productreviews_common.rb', line 165 class ReviewLink include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Type of the review URI. module Type # Type unspecified. TYPE_UNSPECIFIED = 0 # The review page contains only this single review. SINGLETON = 1 # The review page contains a group of reviews including this review. GROUP = 2 end end |
#type ⇒ ::Google::Shopping::Merchant::Reviews::V1beta::ProductReviewAttributes::ReviewLink::Type
Returns Optional. Type of the review URI.
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'proto_docs/google/shopping/merchant/reviews/v1beta/productreviews_common.rb', line 165 class ReviewLink include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Type of the review URI. module Type # Type unspecified. TYPE_UNSPECIFIED = 0 # The review page contains only this single review. SINGLETON = 1 # The review page contains a group of reviews including this review. GROUP = 2 end end |