Class: OpenapiClient::PolicyTypeResponse
- Inherits:
- 
      Object
      
        - Object
- OpenapiClient::PolicyTypeResponse
 
- Defined in:
- lib/openapi_client/models/policy_type_response.rb
Constant Summary collapse
- NULL =
- "null".freeze 
- BEREAVEMENT =
- "bereavement".freeze 
- HOLIDAY =
- "holiday".freeze 
- JURY_DUTY =
- "jury_duty".freeze 
- PERSONAL =
- "personal".freeze 
- SICK =
- "sick".freeze 
- VACATION =
- "vacation".freeze 
- VOLUNTEER =
- "volunteer".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
| 30 31 32 | # File 'lib/openapi_client/models/policy_type_response.rb', line 30 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
| 37 38 39 40 41 | # File 'lib/openapi_client/models/policy_type_response.rb', line 37 def build_from_hash(value) constantValues = PolicyTypeResponse.constants.select { |c| PolicyTypeResponse::const_get(c) == value } raise "Invalid ENUM value #{value} for class #PolicyTypeResponse" if constantValues.empty? value end |