class Google::Apis::AndroidpublisherV3::ReviewReplyResult

The result of replying/updating a reply to review.

Attributes

last_edited[RW]

A Timestamp represents a point in time independent of any time zone or local calendar, encoded as a count of seconds and fractions of seconds at nanosecond resolution. The count is relative to an epoch at UTC midnight on January 1, 1970. Corresponds to the JSON property `lastEdited` @return [Google::Apis::AndroidpublisherV3::Timestamp]

reply_text[RW]

The reply text that was applied. Corresponds to the JSON property `replyText` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 1324
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 1329
def update!(**args)
  @last_edited = args[:last_edited] if args.key?(:last_edited)
  @reply_text = args[:reply_text] if args.key?(:reply_text)
end