Class: Google::Apis::AndroidpublisherV2::DeveloperComment
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV2::DeveloperComment
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v2/classes.rb,
generated/google/apis/androidpublisher_v2/representations.rb,
generated/google/apis/androidpublisher_v2/representations.rb
Instance Attribute Summary collapse
-
#last_modified ⇒ Google::Apis::AndroidpublisherV2::Timestamp
The last time at which this comment was updated.
-
#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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DeveloperComment
Returns a new instance of DeveloperComment
399 400 401 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 399 def initialize(**args) update!(**args) end |
Instance Attribute Details
#last_modified ⇒ Google::Apis::AndroidpublisherV2::Timestamp
The last time at which this comment was updated.
Corresponds to the JSON property lastModified
392 393 394 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 392 def last_modified @last_modified end |
#text ⇒ String
The content of the comment, i.e. reply body.
Corresponds to the JSON property text
397 398 399 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 397 def text @text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
404 405 406 407 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 404 def update!(**args) @last_modified = args[:last_modified] if args.key?(:last_modified) @text = args[:text] if args.key?(:text) end |