Sha256: c78d9e1e2134259bf02bd79cffd82c860aeadbbf4a0d68724898daeee54e5ff0
Contents?: true
Size: 1.01 KB
Versions: 16
Compression:
Stored size: 1.01 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module DingSDK module Shared # RetryAuthenticationResponseStatus - The status of the retry. Possible values are: # * `approved` - The retry was approved and a new code was sent. # * `denied` - The retry was denied. # * `no_attempt` - No attempt was sent yet, so a retry cannot be completed. # * `rate_limited` - The authentication was rate limited and cannot be retried. # * `expired_auth` - The authentication has expired and cannot be retried. # * `already_validated` - The authentication has already been validated. # class RetryAuthenticationResponseStatus < T::Enum enums do APPROVED = new('approved') DENIED = new('denied') NO_ATTEMPT = new('no_attempt') RATE_LIMITED = new('rate_limited') EXPIRED_AUTH = new('expired_auth') ALREADY_VALIDATED = new('already_validated') end end end end
Version data entries
16 entries across 16 versions & 1 rubygems