Sha256: ae1ea91c3e9f540dd36b60adf2ca2df33fb22e9498f3563b80281aa8e34f0f08
Contents?: true
Size: 656 Bytes
Versions: 16
Compression:
Stored size: 656 Bytes
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module DingSDK module Shared # Status - The status of the authentication. Possible values are: # * `pending` - The OTP code is being sent. # * `rate_limited` - This user is rate-limited and cannot receive another code. # * `spam_detected` - This attempt is flagged as spam. Go to the dashboard for more details. # class Status < T::Enum enums do PENDING = new('pending') RATE_LIMITED = new('rate_limited') SPAM_DETECTED = new('spam_detected') end end end end
Version data entries
16 entries across 16 versions & 1 rubygems