class Google::Apis::AndroidpublisherV3::Review
An Android app review.
Attributes
comments[RW]
A repeated field containing comments for the review. Corresponds to the JSON property `comments` @return [Array<Google::Apis::AndroidpublisherV3::Comment>]
review_id[RW]
Unique identifier for this review. Corresponds to the JSON property `reviewId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 1295 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidpublisher_v3/classes.rb, line 1300 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