Sha256: 6b43acc7b09aaa2af72a4d3a84c37e4d55a875d380864296d18635a0832b24f9
Contents?: true
Size: 1.02 KB
Versions: 84
Compression:
Stored size: 1.02 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module DingSDK module Shared # CheckStatus - The status of the check. Possible values are: # * `unknown` - The status is unknown. # * `valid` - The code is valid. # * `invalid` - The code is invalid. # * `without_attempt` - No attempt was sent yet, so a check cannot be completed. # * `rate_limited` - The authentication was rate limited and cannot be checked. # * `already_validated` - The authentication has already been validated. # * `expired_auth` - The authentication has expired and cannot be checked. # class CheckStatus < T::Enum enums do UNKNOWN = new('unknown') VALID = new('valid') INVALID = new('invalid') WITHOUT_ATTEMPT = new('without_attempt') RATE_LIMITED = new('rate_limited') ALREADY_VALIDATED = new('already_validated') EXPIRED_AUTH = new('expired_auth') end end end end
Version data entries
84 entries across 84 versions & 1 rubygems