mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-11-29 00:01:18 -05:00
Update generated code for v1755
This commit is contained in:
parent
6d89ccbcfc
commit
ebab104737
@ -1 +1 @@
|
||||
v1754
|
||||
v1755
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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)) }
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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)) }
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user