Module: Lithic::Models::PaymentListParams::Category

Extended by:
Internal::Type::Enum
Defined in:
lib/lithic/models/payment_list_params.rb

Constant Summary collapse

ACH =
:ACH

Instance Method Summary collapse

Methods included from Internal::Type::Enum

==, ===, coerce, dump, hash, inspect, to_sorbet_type, values

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info

Instance Method Details

#initialize(account_token: nil, begin_: nil, business_account_token: nil, category: nil, end_: nil, ending_before: nil, financial_account_token: nil, page_size: nil, result: nil, starting_after: nil, status: nil, request_options: {}) ⇒ Object

Some parameter documentations has been truncated, see Lithic::Models::PaymentListParams for more details.

Parameters:

  • account_token (String) (defaults to: nil)
  • begin_ (Time) (defaults to: nil)

    Date string in RFC 3339 format. Only entries created after the specified time wi

  • business_account_token (String) (defaults to: nil)
  • category (Symbol, Lithic::Models::PaymentListParams::Category) (defaults to: nil)
  • end_ (Time) (defaults to: nil)

    Date string in RFC 3339 format. Only entries created before the specified time w

  • ending_before (String) (defaults to: nil)

    A cursor representing an item’s token before which a page of results should end.

  • financial_account_token (String) (defaults to: nil)
  • page_size (Integer) (defaults to: nil)

    Page size (for pagination).

  • result (Symbol, Lithic::Models::PaymentListParams::Result) (defaults to: nil)
  • starting_after (String) (defaults to: nil)

    A cursor representing an item’s token after which a page of results should begin

  • status (Symbol, Lithic::Models::PaymentListParams::Status) (defaults to: nil)
  • request_options (Lithic::RequestOptions, Hash{Symbol=>Object}) (defaults to: {})


102
103
104
105
106
107
108
109
# File 'lib/lithic/models/payment_list_params.rb', line 102

module Category
  extend Lithic::Internal::Type::Enum

  ACH = :ACH

  # @!method self.values
  #   @return [Array<Symbol>]
end