Class: Google::Apis::AndroidpublisherV2::Review
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AndroidpublisherV2::Review
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/androidpublisher_v2/classes.rb,
generated/google/apis/androidpublisher_v2/representations.rb,
generated/google/apis/androidpublisher_v2/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #author_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the user who wrote the review.
 - 
  
    
      #comments  ⇒ Array<Google::Apis::AndroidpublisherV2::Comment> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A repeated field containing comments for the review.
 - 
  
    
      #review_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Unique identifier for this review.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Review 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Review.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Review
Returns a new instance of Review
      1180 1181 1182  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1180 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#author_name ⇒ String
The name of the user who wrote the review.
Corresponds to the JSON property authorName
      1168 1169 1170  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1168 def @author_name end  | 
  
#comments ⇒ Array<Google::Apis::AndroidpublisherV2::Comment>
A repeated field containing comments for the review.
Corresponds to the JSON property comments
      1173 1174 1175  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1173 def comments @comments end  | 
  
#review_id ⇒ String
Unique identifier for this review.
Corresponds to the JSON property reviewId
      1178 1179 1180  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1178 def review_id @review_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1185 1186 1187 1188 1189  | 
    
      # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1185 def update!(**args) @author_name = args[:author_name] if args.key?(:author_name) @comments = args[:comments] if args.key?(:comments) @review_id = args[:review_id] if args.key?(:review_id) end  |