@@ -186,71 +186,6 @@ module Stripe
186186 end
187187end
188188# typed: true
189- module Stripe
190- module FinancialConnections
191- # An Authorization represents the set of credentials used to connect a group of Financial Connections Accounts.
192- class Authorization < APIResource
193- class StatusDetails < ::Stripe::StripeObject
194- class Active < ::Stripe::StripeObject
195- # The action (if any) to proactively relink the Authorization.
196- sig { returns(String) }
197- def action; end
198- # When the Authorization is expected to become inactive, if applicable.
199- sig { returns(Integer) }
200- def expected_deactivation_date; end
201- def self.inner_class_types
202- @inner_class_types = {}
203- end
204- def self.field_remappings
205- @field_remappings = {}
206- end
207- end
208- class Inactive < ::Stripe::StripeObject
209- # The action (if any) to relink the inactive Authorization.
210- sig { returns(String) }
211- def action; end
212- def self.inner_class_types
213- @inner_class_types = {}
214- end
215- def self.field_remappings
216- @field_remappings = {}
217- end
218- end
219- # Attribute for field active
220- sig { returns(T.nilable(Active)) }
221- def active; end
222- # Attribute for field inactive
223- sig { returns(T.nilable(Inactive)) }
224- def inactive; end
225- def self.inner_class_types
226- @inner_class_types = {active: Active, inactive: Inactive}
227- end
228- def self.field_remappings
229- @field_remappings = {}
230- end
231- end
232- # Unique identifier for the object.
233- sig { returns(String) }
234- def id; end
235- # The name of the institution that this authorization belongs to.
236- sig { returns(String) }
237- def institution_name; end
238- # If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.
239- sig { returns(T::Boolean) }
240- def livemode; end
241- # String representing the object's type. Objects of the same type share the same value.
242- sig { returns(String) }
243- def object; end
244- # The status of the connection to the Authorization.
245- sig { returns(String) }
246- def status; end
247- # Attribute for field status_details
248- sig { returns(StatusDetails) }
249- def status_details; end
250- end
251- end
252- end
253- # typed: true
254189module Stripe
255190 # These bank accounts are payment methods on `Customer` objects.
256191 #
0 commit comments