Update generated code for v1755

This commit is contained in:
Stripe OpenAPI 2025-05-14 20:12:16 +00:00
parent 6d89ccbcfc
commit ebab104737
6 changed files with 49 additions and 1 deletions

View File

@ -1 +1 @@
v1754
v1755

View File

@ -91,10 +91,16 @@ module Stripe
attr_reader :last_name
# Document ID number.
attr_reader :number
# Sex of the person in the document.
attr_reader :sex
# Status of this `document` check.
attr_reader :status
# Type of the document.
attr_reader :type
# Place of birth as it appears in the document.
attr_reader :unparsed_place_of_birth
# Sex as it appears in the document.
attr_reader :unparsed_sex
end
class Email < Stripe::StripeObject

View File

@ -116,6 +116,12 @@ module Stripe
attr_reader :last_name
# The user's verified phone number
attr_reader :phone
# The user's verified sex.
attr_reader :sex
# The user's verified place of birth as it appears in the document.
attr_reader :unparsed_place_of_birth
# The user's verified sex as it appears in the document.
attr_reader :unparsed_sex
end
class ListParams < Stripe::RequestParams

View File

@ -31709,12 +31709,21 @@ module Stripe
# Document ID number.
sig { returns(T.nilable(String)) }
attr_reader :number
# Sex of the person in the document.
sig { returns(T.nilable(String)) }
attr_reader :sex
# Status of this `document` check.
sig { returns(String) }
attr_reader :status
# Type of the document.
sig { returns(T.nilable(String)) }
attr_reader :type
# Place of birth as it appears in the document.
sig { returns(T.nilable(String)) }
attr_reader :unparsed_place_of_birth
# Sex as it appears in the document.
sig { returns(T.nilable(String)) }
attr_reader :unparsed_sex
end
class Email < Stripe::StripeObject
class Error < Stripe::StripeObject
@ -32081,6 +32090,15 @@ module Stripe
# The user's verified phone number
sig { returns(T.nilable(String)) }
attr_reader :phone
# The user's verified sex.
sig { returns(T.nilable(String)) }
attr_reader :sex
# The user's verified place of birth as it appears in the document.
sig { returns(T.nilable(String)) }
attr_reader :unparsed_place_of_birth
# The user's verified sex as it appears in the document.
sig { returns(T.nilable(String)) }
attr_reader :unparsed_sex
end
# A string to reference this user. This can be a customer ID, a session ID, or similar, and can be used to reconcile this verification with your internal systems.
sig { returns(T.nilable(String)) }

View File

@ -108,12 +108,21 @@ module Stripe
# Document ID number.
sig { returns(T.nilable(String)) }
attr_reader :number
# Sex of the person in the document.
sig { returns(T.nilable(String)) }
attr_reader :sex
# Status of this `document` check.
sig { returns(String) }
attr_reader :status
# Type of the document.
sig { returns(T.nilable(String)) }
attr_reader :type
# Place of birth as it appears in the document.
sig { returns(T.nilable(String)) }
attr_reader :unparsed_place_of_birth
# Sex as it appears in the document.
sig { returns(T.nilable(String)) }
attr_reader :unparsed_sex
end
class Email < Stripe::StripeObject
class Error < Stripe::StripeObject

View File

@ -132,6 +132,15 @@ module Stripe
# The user's verified phone number
sig { returns(T.nilable(String)) }
attr_reader :phone
# The user's verified sex.
sig { returns(T.nilable(String)) }
attr_reader :sex
# The user's verified place of birth as it appears in the document.
sig { returns(T.nilable(String)) }
attr_reader :unparsed_place_of_birth
# The user's verified sex as it appears in the document.
sig { returns(T.nilable(String)) }
attr_reader :unparsed_sex
end
# A string to reference this user. This can be a customer ID, a session ID, or similar, and can be used to reconcile this verification with your internal systems.
sig { returns(T.nilable(String)) }