class Google::Apis::AndroidpublisherV3::DeveloperComment
Developer entry from conversation between user and developer.
Attributes
last_modified[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 `lastModified` @return [Google::Apis::AndroidpublisherV3::Timestamp]
text[RW]
The content of the comment, i.e. reply body. Corresponds to the JSON property `text` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 375 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 380 def update!(**args) @last_modified = args[:last_modified] if args.key?(:last_modified) @text = args[:text] if args.key?(:text) end