Class: Google::Apis::AndroidpublisherV3::Comment
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::Comment
- 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
An entry of conversation between user and developer.
Instance Attribute Summary collapse
-
#developer_comment ⇒ Google::Apis::AndroidpublisherV3::DeveloperComment
Developer entry from conversation between user and developer.
-
#user_comment ⇒ Google::Apis::AndroidpublisherV3::UserComment
User entry from conversation between user and developer.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Comment
constructor
A new instance of Comment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Comment
Returns a new instance of Comment.
1325 1326 1327 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1325 def initialize(**args) update!(**args) end |
Instance Attribute Details
#developer_comment ⇒ Google::Apis::AndroidpublisherV3::DeveloperComment
Developer entry from conversation between user and developer.
Corresponds to the JSON property developerComment
1318 1319 1320 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1318 def developer_comment @developer_comment end |
#user_comment ⇒ Google::Apis::AndroidpublisherV3::UserComment
User entry from conversation between user and developer.
Corresponds to the JSON property userComment
1323 1324 1325 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1323 def user_comment @user_comment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1330 1331 1332 1333 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1330 def update!(**args) @developer_comment = args[:developer_comment] if args.key?(:developer_comment) @user_comment = args[:user_comment] if args.key?(:user_comment) end |