Sha256: d7a11386533aa1ebde26b41bbf3bad226c8af3d49c1300d177039351f1540095
Contents?: true
Size: 941 Bytes
Versions: 1
Compression:
Stored size: 941 Bytes
Contents
# Code generated by Speakeasy (https://speakeasyapi.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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ding_sdk-0.8.12 | lib/ding_sdk/models/shared/retryauthenticationrequest.rb |