Sha256: 62c80f732023785470a8596ed2155ab1103138872933e74863390d54dffbaa2b
Contents?: true
Size: 938 Bytes
Versions: 91
Compression:
Stored size: 938 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module DingSDK module Shared class RetryAuthenticationRequest < ::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') } } # 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, customer_uuid: ::String).void } def initialize(authentication_uuid: nil, customer_uuid: nil) @authentication_uuid = authentication_uuid @customer_uuid = customer_uuid end end end end
Version data entries
91 entries across 91 versions & 1 rubygems