19
20
21
22
23
24
25
26
27
28
29
30
|
# File 'lib/shopify_api/rest/resources/2022_04/payment.rb', line 19
def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil)
@checkout = T.let(nil, T.nilable(Checkout))
@credit_card = T.let(nil, T.nilable(T::Hash[T.untyped, T.untyped]))
@id = T.let(nil, T.nilable(Integer))
@next_action = T.let(nil, T.nilable(T::Hash[T.untyped, T.untyped]))
@payment_processing_error_message = T.let(nil, T.nilable(String))
@transaction = T.let(nil, T.nilable(Transaction))
@unique_token = T.let(nil, T.nilable(String))
super(session: session, from_hash: from_hash)
end
|