Method: OpenapiClient::EmploymentStatusNotNullRequest#build_from_hash

Defined in:
lib/openapi_client/models/employment_status_not_null_request.rb

#build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



33
34
35
36
37
# File 'lib/openapi_client/models/employment_status_not_null_request.rb', line 33

def build_from_hash(value)
  constantValues = EmploymentStatusNotNullRequest.constants.select { |c| EmploymentStatusNotNullRequest::const_get(c) == value }
  raise "Invalid ENUM value #{value} for class #EmploymentStatusNotNullRequest" if constantValues.empty?
  value
end