=begin
#Elastic Email REST API
#This API is based on the REST API architecture, allowing the user to easily manage their data with this resource-based approach. Every API call is established on which specific request type (GET, POST, PUT, DELETE) will be used. The API has a limit of 20 concurrent connections and a hard timeout of 600 seconds per request. To start using this API, you will need your Access Token (available here). Remember to keep it safe. Required access levels are listed in the given request’s description. This is the documentation for REST API. If you’d like to read our legacy documentation regarding Web API v2 click here. Downloadable library clients can be found in our Github repository here
The version of the OpenAPI document: 4.0.0
Contact: support@elasticemail.com
Generated by: https://openapi-generator.tech
OpenAPI Generator version: 5.2.1
=end
require 'date'
require 'time'
module ElasticEmail
class AccountStatusEnum
DISABLED = "Disabled".freeze
UNDER_REVIEW = "UnderReview".freeze
NO_PAYMENTS_ALLOWED = "NoPaymentsAllowed".freeze
NEVER_SIGNED_IN = "NeverSignedIn".freeze
ACTIVE = "Active".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 = AccountStatusEnum.constants.select { |c| AccountStatusEnum::const_get(c) == value }
raise "Invalid ENUM value #{value} for class #AccountStatusEnum" if constantValues.empty?
value
end
end
end