Sha256: eb910daf61f379b621f57f0e365bbd1b9951917c3c49b2c4755ff4b6d13a549c
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.com). 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ding_sdk-0.8.12 | lib/ding_sdk/models/shared/retryauthenticationresponse_status.rb |