Class: OpenapiClient::ResponseType
- Inherits:
-
Object
- Object
- OpenapiClient::ResponseType
- Defined in:
- lib/openapi_client/models/response_type.rb
Constant Summary collapse
- BAD_REQUEST =
"BadRequest".freeze
- UNAUTHENTICATED =
"Unauthenticated".freeze
- UNAUTHORIZED =
"Unauthorized".freeze
- NOT_FOUND =
"NotFound".freeze
- GATEWAY_DECLINED =
"GatewayDeclined".freeze
- ENDPOINT_DECLINED =
"EndpointDeclined".freeze
- SERVER_ERROR =
"ServerError".freeze
- ENDPOINT_COMMUNICATION_ERROR =
"EndpointCommunicationError".freeze
- UNSUPPORTED_MEDIA_TYPE =
"UnsupportedMediaType".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/response_type.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/response_type.rb', line 37 def build_from_hash(value) constantValues = ResponseType.constants.select { |c| ResponseType::const_get(c) == value } raise "Invalid ENUM value #{value} for class #ResponseType" if constantValues.empty? value end |