Class: LockstepSdk::CurrencyRateModel

Inherits:
Object
  • Object
show all
Defined in:
lib/lockstep_sdk/models/currency_rate_model.rb

Overview

Represents a currency rate for specific currencies and date

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params = {}) ⇒ CurrencyRateModel

Initialize the CurrencyRateModel using the provided prototype



26
27
28
29
30
31
# File 'lib/lockstep_sdk/models/currency_rate_model.rb', line 26

def initialize(params = {})
    @source_currency = params.dig(:source_currency)
    @destination_currency = params.dig(:destination_currency)
    @date = params.dig(:date)
    @currency_rate = params.dig(:currency_rate)
end

Instance Attribute Details

#currency_rateDouble

Returns The currency rate value.

Returns:

  • (Double)

    The currency rate value



40
41
42
# File 'lib/lockstep_sdk/models/currency_rate_model.rb', line 40

def currency_rate
  @currency_rate
end

#dateDate

Returns The date for the currency rate.

Returns:

  • (Date)

    The date for the currency rate



38
39
40
# File 'lib/lockstep_sdk/models/currency_rate_model.rb', line 38

def date
  @date
end

#destination_currencyString

Returns The destination currency.

Returns:

  • (String)

    The destination currency



36
37
38
# File 'lib/lockstep_sdk/models/currency_rate_model.rb', line 36

def destination_currency
  @destination_currency
end

#source_currencyString

Returns The source currency.

Returns:

  • (String)

    The source currency



34
35
36
# File 'lib/lockstep_sdk/models/currency_rate_model.rb', line 34

def source_currency
  @source_currency
end

Instance Method Details

#as_json(options = {}) ⇒ object

Returns This object as a JSON key-value structure.

Returns:

  • (object)

    This object as a JSON key-value structure



43
44
45
46
47
48
49
50
# File 'lib/lockstep_sdk/models/currency_rate_model.rb', line 43

def as_json(options={})
    {
        'sourceCurrency' => @source_currency,
        'destinationCurrency' => @destination_currency,
        'date' => @date,
        'currencyRate' => @currency_rate,
    }
end

#to_json(*options) ⇒ String

Returns This object converted to a JSON string.

Returns:

  • (String)

    This object converted to a JSON string



53
54
55
# File 'lib/lockstep_sdk/models/currency_rate_model.rb', line 53

def to_json(*options)
    "[#{as_json(*options).to_json(*options)}]"
end