Class: Belpost::Models::BatchItem

Inherits:
Object
  • Object
show all
Defined in:
lib/belpost/models/batch_item.rb

Overview

Model class for batch item

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ BatchItem

Returns a new instance of BatchItem.



9
10
11
# File 'lib/belpost/models/batch_item.rb', line 9

def initialize(data)
  @data = data
end

Instance Attribute Details

#dataObject (readonly)

Returns the value of attribute data.



7
8
9
# File 'lib/belpost/models/batch_item.rb', line 7

def data
  @data
end

Instance Method Details

#to_hObject



13
14
15
# File 'lib/belpost/models/batch_item.rb', line 13

def to_h
  data
end

#to_json(*_args) ⇒ Object



17
18
19
# File 'lib/belpost/models/batch_item.rb', line 17

def to_json(*_args)
  data.to_json
end