=begin #Datadog API V1 Collection #Collection of all Datadog Public endpoints. The version of the OpenAPI document: 1.0 Contact: support@datadoghq.com Generated by: https://openapi-generator.tech Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2020-Present Datadog, Inc. =end require 'date' require 'time' module DatadogAPIClient::V1 class SyntheticsTickInterval MINUTE = 60.freeze FIVE_MINUTES = 300.freeze FIFTEEN_MINUTES = 900.freeze THIRTY_MINUTES = 1800.freeze HOUR = 3600.freeze SIX_HOURS = 21600.freeze TWELVE_HOURS = 43200.freeze DAY = 86400.freeze WEEK = 604800.freeze # 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) constantValues = SyntheticsTickInterval.constants.select { |c| SyntheticsTickInterval::const_get(c) == value } raise "Invalid ENUM value #{value} for class #SyntheticsTickInterval" if constantValues.empty? value end end end