Class: ShellDataReportingApIs::RecentTransactionRequest
- Inherits:
-
BaseModel
- Object
- CoreLibrary::BaseModel
- BaseModel
- ShellDataReportingApIs::RecentTransactionRequest
- Defined in:
- lib/shell_data_reporting_ap_is/models/recent_transaction_request.rb
Overview
RecentTransactionRequest Model.
Instance Attribute Summary collapse
-
#filters ⇒ RecentTransactionReq
Specify the page of results to be returned.
-
#page ⇒ Integer
Specify the page of results to be returned.
-
#page_size ⇒ Integer
Specify the number of records to returned; Max 1000.
Class Method Summary collapse
-
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
-
.names ⇒ Object
A mapping from model property names to API property names.
-
.nullables ⇒ Object
An array for nullable fields.
-
.optionals ⇒ Object
An array for optional fields.
Instance Method Summary collapse
-
#initialize(page_size = nil, page = nil, filters = nil) ⇒ RecentTransactionRequest
constructor
A new instance of RecentTransactionRequest.
Methods inherited from BaseModel
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
#filters ⇒ RecentTransactionReq
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 |
#page ⇒ Integer
Specify the page of results to be returned.
18 19 20 |
# File 'lib/shell_data_reporting_ap_is/models/recent_transaction_request.rb', line 18 def page @page end |
#page_size ⇒ Integer
Specify the number of records to returned; Max 1000
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 |
.names ⇒ Object
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 |
.nullables ⇒ Object
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 |
.optionals ⇒ Object
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 |