Class: Google::Apis::AndroidpublisherV3::DeveloperComment
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::DeveloperComment
- 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
Developer entry from conversation between user and developer.
Instance Attribute Summary collapse
-
#last_modified ⇒ Google::Apis::AndroidpublisherV3::Timestamp
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.
-
#text ⇒ String
The content of the comment, i.e.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeveloperComment
constructor
A new instance of DeveloperComment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeveloperComment
Returns a new instance of DeveloperComment.
1670 1671 1672 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1670 def initialize(**args) update!(**args) end |
Instance Attribute Details
#last_modified ⇒ Google::Apis::AndroidpublisherV3::Timestamp
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
1663 1664 1665 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1663 def last_modified @last_modified end |
#text ⇒ String
The content of the comment, i.e. reply body.
Corresponds to the JSON property text
1668 1669 1670 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1668 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1675 1676 1677 1678 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1675 def update!(**args) @last_modified = args[:last_modified] if args.key?(:last_modified) @text = args[:text] if args.key?(:text) end |