Class: OpenapiClient::PayrunTypeResponse
- Inherits:
-
Object
- Object
- OpenapiClient::PayrunTypeResponse
- Defined in:
- lib/openapi_client/models/payrun_type_response.rb
Constant Summary collapse
- REGULAR =
"regular".freeze
- ONE_TIME =
"one_time".freeze
- OFF_CYCLE =
"off_cycle".freeze
- CORRECTION =
"correction".freeze
- REVERSAL =
"reversal".freeze
- NULL =
"null".freeze
Class Method Summary collapse
-
.build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Class Method Details
.build_from_hash(value) ⇒ String
Builds the enum from string
28 29 30 |
# File 'lib/openapi_client/models/payrun_type_response.rb', line 28 def self.build_from_hash(value) new.build_from_hash(value) end |
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
35 36 37 38 39 |
# File 'lib/openapi_client/models/payrun_type_response.rb', line 35 def build_from_hash(value) constantValues = PayrunTypeResponse.constants.select { |c| PayrunTypeResponse::const_get(c) == value } raise "Invalid ENUM value #{value} for class #PayrunTypeResponse" if constantValues.empty? value end |