Update generated code for v1664

This commit is contained in:
Stripe OpenAPI 2025-04-07 22:50:47 +00:00
parent c0cf53a31b
commit 5be7d35bdd
6 changed files with 102 additions and 5 deletions

View File

@ -1 +1 @@
v1663 v1664

View File

@ -300,6 +300,11 @@ module Stripe
attr_reader :type attr_reader :type
end end
class In < Stripe::StripeObject
# Type of registration in `country`.
attr_reader :type
end
class Is < Stripe::StripeObject class Is < Stripe::StripeObject
# Type of registration in `country`. # Type of registration in `country`.
attr_reader :type attr_reader :type
@ -718,6 +723,8 @@ module Stripe
attr_reader :id attr_reader :id
# Attribute for field ie # Attribute for field ie
attr_reader :ie attr_reader :ie
# Attribute for field in
attr_reader :in
# Attribute for field is # Attribute for field is
attr_reader :is attr_reader :is
# Attribute for field it # Attribute for field it
@ -1356,6 +1363,15 @@ module Stripe
end end
end end
class In < Stripe::RequestParams
# Type of registration to be created in `country`.
attr_accessor :type
def initialize(type: nil)
@type = type
end
end
class Is < Stripe::RequestParams class Is < Stripe::RequestParams
# Type of registration to be created in `country`. # Type of registration to be created in `country`.
attr_accessor :type attr_accessor :type
@ -2057,6 +2073,8 @@ module Stripe
attr_accessor :id attr_accessor :id
# Options for the registration in IE. # Options for the registration in IE.
attr_accessor :ie attr_accessor :ie
# Options for the registration in IN.
attr_accessor :in
# Options for the registration in IS. # Options for the registration in IS.
attr_accessor :is attr_accessor :is
# Options for the registration in IT. # Options for the registration in IT.
@ -2194,6 +2212,7 @@ module Stripe
hu: nil, hu: nil,
id: nil, id: nil,
ie: nil, ie: nil,
in_: nil,
is: nil, is: nil,
it: nil, it: nil,
jp: nil, jp: nil,
@ -2281,6 +2300,7 @@ module Stripe
@hu = hu @hu = hu
@id = id @id = id
@ie = ie @ie = ie
@in = in_
@is = is @is = is
@it = it @it = it
@jp = jp @jp = jp

View File

@ -542,6 +542,15 @@ module Stripe
end end
end end
class In < Stripe::RequestParams
# Type of registration to be created in `country`.
attr_accessor :type
def initialize(type: nil)
@type = type
end
end
class Is < Stripe::RequestParams class Is < Stripe::RequestParams
# Type of registration to be created in `country`. # Type of registration to be created in `country`.
attr_accessor :type attr_accessor :type
@ -1243,6 +1252,8 @@ module Stripe
attr_accessor :id attr_accessor :id
# Options for the registration in IE. # Options for the registration in IE.
attr_accessor :ie attr_accessor :ie
# Options for the registration in IN.
attr_accessor :in
# Options for the registration in IS. # Options for the registration in IS.
attr_accessor :is attr_accessor :is
# Options for the registration in IT. # Options for the registration in IT.
@ -1380,6 +1391,7 @@ module Stripe
hu: nil, hu: nil,
id: nil, id: nil,
ie: nil, ie: nil,
in_: nil,
is: nil, is: nil,
it: nil, it: nil,
jp: nil, jp: nil,
@ -1467,6 +1479,7 @@ module Stripe
@hu = hu @hu = hu
@id = id @id = id
@ie = ie @ie = ie
@in = in_
@is = is @is = is
@it = it @it = it
@jp = jp @jp = jp

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long