Class: Google::Apis::AndroidpublisherV3::Comment

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Comment

Returns a new instance of Comment.



544
545
546
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 544

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#developer_commentGoogle::Apis::AndroidpublisherV3::DeveloperComment

Developer entry from conversation between user and developer. Corresponds to the JSON property developerComment



537
538
539
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 537

def developer_comment
  @developer_comment
end

#user_commentGoogle::Apis::AndroidpublisherV3::UserComment

User entry from conversation between user and developer. Corresponds to the JSON property userComment



542
543
544
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 542

def user_comment
  @user_comment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



549
550
551
552
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 549

def update!(**args)
  @developer_comment = args[:developer_comment] if args.key?(:developer_comment)
  @user_comment = args[:user_comment] if args.key?(:user_comment)
end