Class: Google::Apis::AndroidpublisherV3::DeveloperComment

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/androidpublisher_v3/classes.rb,
generated/google/apis/androidpublisher_v3/representations.rb,
generated/google/apis/androidpublisher_v3/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DeveloperComment

Returns a new instance of DeveloperComment



348
349
350
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 348

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

Instance Attribute Details

#last_modifiedGoogle::Apis::AndroidpublisherV3::Timestamp

The last time at which this comment was updated. Corresponds to the JSON property lastModified



341
342
343
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 341

def last_modified
  @last_modified
end

#textString

The content of the comment, i.e. reply body. Corresponds to the JSON property text

Returns:

  • (String)


346
347
348
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 346

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



353
354
355
356
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 353

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