class Marver::TextObject

Attributes

language[R]
text[R]
type[R]

Public Class Methods

new(json) click to toggle source
# File lib/marver/entities/text_object.rb, line 5
def initialize(json)
  @type = json['type']
  @language = json['language']
  @text = json['text']
end