Sha256: 81c1472985444a0501f4aba2ea3c94cdc2f0894450c36ad3b518efbd1e4d3a00
Contents?: true
Size: 1.13 KB
Versions: 7
Compression:
Stored size: 1.13 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module DingSDK module Shared class CreateCheckRequest < ::DingSDK::Utils::FieldAugmented extend T::Sig # The authentication UUID that was returned when you created the authentication. field :authentication_uuid, ::String, { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('authentication_uuid') } } # The code that the user entered. field :check_code, ::String, { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('check_code') } } # Your customer UUID, which can be found in the API settings in the dashboard. field :customer_uuid, ::String, { 'format_json': { 'letter_case': ::DingSDK::Utils.field_name('customer_uuid') } } sig { params(authentication_uuid: ::String, check_code: ::String, customer_uuid: ::String).void } def initialize(authentication_uuid: nil, check_code: nil, customer_uuid: nil) @authentication_uuid = authentication_uuid @check_code = check_code @customer_uuid = customer_uuid end end end end
Version data entries
7 entries across 7 versions & 1 rubygems