Class: ShellDataReportingApIs::RecentTransactionRequest

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/shell_data_reporting_ap_is/models/recent_transaction_request.rb

Overview

RecentTransactionRequest Model.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseModel

#to_hash, #to_json

Constructor Details

#initialize(page_size = nil, page = nil, filters = nil) ⇒ RecentTransactionRequest

Returns a new instance of RecentTransactionRequest.



43
44
45
46
47
# File 'lib/shell_data_reporting_ap_is/models/recent_transaction_request.rb', line 43

def initialize(page_size = nil, page = nil, filters = nil)
  @page_size = page_size
  @page = page
  @filters = filters
end

Instance Attribute Details

#filtersRecentTransactionReq

Specify the page of results to be returned.



22
23
24
# File 'lib/shell_data_reporting_ap_is/models/recent_transaction_request.rb', line 22

def filters
  @filters
end

#pageInteger

Specify the page of results to be returned.

Returns:

  • (Integer)


18
19
20
# File 'lib/shell_data_reporting_ap_is/models/recent_transaction_request.rb', line 18

def page
  @page
end

#page_sizeInteger

Specify the number of records to returned; Max 1000

Returns:

  • (Integer)


14
15
16
# File 'lib/shell_data_reporting_ap_is/models/recent_transaction_request.rb', line 14

def page_size
  @page_size
end

Class Method Details

.from_hash(hash) ⇒ Object

Creates an instance of the object from a hash.



50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/shell_data_reporting_ap_is/models/recent_transaction_request.rb', line 50

def self.from_hash(hash)
  return nil unless hash

  # Extract variables from the hash.
  page_size = hash.key?('PageSize') ? hash['PageSize'] : nil
  page = hash.key?('Page') ? hash['Page'] : nil
  filters = RecentTransactionReq.from_hash(hash['Filters']) if hash['Filters']

  # Create object from extracted values.
  RecentTransactionRequest.new(page_size,
                               page,
                               filters)
end

.namesObject

A mapping from model property names to API property names.



25
26
27
28
29
30
31
# File 'lib/shell_data_reporting_ap_is/models/recent_transaction_request.rb', line 25

def self.names
  @_hash = {} if @_hash.nil?
  @_hash['page_size'] = 'PageSize'
  @_hash['page'] = 'Page'
  @_hash['filters'] = 'Filters'
  @_hash
end

.nullablesObject

An array for nullable fields



39
40
41
# File 'lib/shell_data_reporting_ap_is/models/recent_transaction_request.rb', line 39

def self.nullables
  []
end

.optionalsObject

An array for optional fields



34
35
36
# File 'lib/shell_data_reporting_ap_is/models/recent_transaction_request.rb', line 34

def self.optionals
  []
end