Sha256: 5f619910711d49aa41a1ea71c0b2a57c5878ab65f1b058a5820c61d7885fa662
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module DingSDK module Shared class CreateCheckResponse < ::DingSDK::Utils::FieldAugmented extend T::Sig # The UUID of the corresponding authentication. field :authentication_uuid, T.nilable(::String), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('authentication_uuid') } } # The status of the check. Possible values are: # * `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. # field :status, T.nilable(::DingSDK::Shared::CreateCheckResponseStatus), { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('status'), 'decoder': Utils.enum_from_string(::DingSDK::Shared::CreateCheckResponseStatus, true) } } sig { params(authentication_uuid: T.nilable(::String), status: T.nilable(::DingSDK::Shared::CreateCheckResponseStatus)).void } def initialize(authentication_uuid: nil, status: nil) @authentication_uuid = authentication_uuid @status = status 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/createcheckresponse.rb |