/
YuriyMaksimov
/
Lab3
Обзор
Документация
Войти
/
YuriyMaksimov
/
Lab3
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
lib/openapi_client/models/priority.rb
41 строка
959 B
Yuriy
init
12 дек 2025, 23:07
12 дек 2025, 23:07
7df06fa
Код
Авторство
О чём код?
=begin #Task API v1 #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) The version of the OpenAPI document: v1 Generated by: https://openapi-generator.tech Generator version: 7.17.0 =end require 'date' require 'time' module OpenapiClient class Priority N0 = 0.freeze N1 = 1.freeze N2 = 2.freeze def self.all_vars @all_vars ||= [N0, N1, N2].freeze end # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def self.build_from_hash(value) new.build_from_hash(value) end # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def build_from_hash(value) return value if Priority.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #Priority" end end end