Sha256: 177efe43f63ae74459cd620fd3078d7afce6e7cb6b7d18d51ba25ac4101ea49c
Contents?: true
Size: 941 Bytes
Versions: 16
Compression:
Stored size: 941 Bytes
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). 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
16 entries across 16 versions & 1 rubygems