Class: LockstepSdk::StateModel

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

Overview

State model for ISO-3166-2

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params = {}) ⇒ StateModel

Initialize the StateModel using the provided prototype



28
29
30
31
32
# File 'lib/lockstep_sdk/models/state_model.rb', line 28

def initialize(params = {})
    @name = params.dig(:name)
    @alpha2 = params.dig(:alpha2)
    @aliases = params.dig(:aliases)
end

Instance Attribute Details

#aliasesString

Returns A different name for a state.

Returns:

  • (String)

    A different name for a state



44
45
46
# File 'lib/lockstep_sdk/models/state_model.rb', line 44

def aliases
  @aliases
end

#alpha2String

Returns 2 letter alphabetic code for the given state.

Returns:

  • (String)

    2 letter alphabetic code for the given state



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

def alpha2
  @alpha2
end

#nameString

Returns Name of the state.

Returns:

  • (String)

    Name of the state



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

def name
  @name
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



48
49
50
51
52
53
54
# File 'lib/lockstep_sdk/models/state_model.rb', line 48

def as_json(options={})
    {
        'name' => @name,
        'alpha2' => @alpha2,
        'aliases' => @aliases,
    }
end

#to_json(*options) ⇒ String

Returns This object converted to a JSON string.

Returns:

  • (String)

    This object converted to a JSON string



58
59
60
# File 'lib/lockstep_sdk/models/state_model.rb', line 58

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