Class: Google::Apis::AndroidpublisherV3::Review

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb

Overview

An Android app review.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Review

Returns a new instance of Review.



2810
2811
2812
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2810

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

Instance Attribute Details

#author_nameString

The name of the user who wrote the review. Corresponds to the JSON property authorName

Returns:

  • (String)


2798
2799
2800
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2798

def author_name
  @author_name
end

#commentsArray<Google::Apis::AndroidpublisherV3::Comment>

A repeated field containing comments for the review. Corresponds to the JSON property comments



2803
2804
2805
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2803

def comments
  @comments
end

#review_idString

Unique identifier for this review. Corresponds to the JSON property reviewId

Returns:

  • (String)


2808
2809
2810
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2808

def review_id
  @review_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2815
2816
2817
2818
2819
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2815

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