Sha256: d1c77df21858ff96097141b1751d6adfc91d4c40aa3ae737a1fa6f23a7656ad4
Contents?: true
Size: 1 KB
Versions: 88
Compression:
Stored size: 1 KB
Contents
# Code generated by Speakeasy (https://speakeasy.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
88 entries across 88 versions & 1 rubygems