Class: PostFinanceCheckout::RoleState
- Inherits:
-
Object
- Object
- PostFinanceCheckout::RoleState
- Defined in:
- lib/postfinancecheckout-ruby-sdk/models/role_state.rb
Constant Summary collapse
- CREATE =
'CREATE'.freeze
- ACTIVE =
'ACTIVE'.freeze
- DELETING =
'DELETING'.freeze
- DELETED =
'DELETED'.freeze
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
31 32 33 34 35 |
# File 'lib/postfinancecheckout-ruby-sdk/models/role_state.rb', line 31 def build_from_hash(value) constantValues = RoleState.constants.select { |c| RoleState::const_get(c) == value } raise "Invalid ENUM value #{value} for class #RoleState" if constantValues.empty? value end |