Class: Yoomoney::Models::PaymentListParams::CapturedAt

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/yoomoney/models/payment_list_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

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

Methods included from Internal::Util::SorbetRuntimeSupport

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

Constructor Details

#initialize(captured_at: nil, created_at: nil, cursor: nil, limit: nil, payment_method: nil, status: nil, request_options: {}) ⇒ Object

Parameters:



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/yoomoney/models/payment_list_params.rb', line 49

class CapturedAt < Yoomoney::Internal::Type::BaseModel
  # @!attribute gt
  #
  #   @return [Time, nil]
  optional :gt, Time

  # @!attribute gte
  #
  #   @return [Time, nil]
  optional :gte, Time

  # @!attribute lt
  #
  #   @return [Time, nil]
  optional :lt, Time

  # @!attribute lte
  #
  #   @return [Time, nil]
  optional :lte, Time

  # @!method initialize(gt: nil, gte: nil, lt: nil, lte: nil)
  #   @param gt [Time]
  #   @param gte [Time]
  #   @param lt [Time]
  #   @param lte [Time]
end

Instance Attribute Details

#gtTime?

Returns:

  • (Time, nil)


53
# File 'lib/yoomoney/models/payment_list_params.rb', line 53

optional :gt, Time

#gteTime?

Returns:

  • (Time, nil)


58
# File 'lib/yoomoney/models/payment_list_params.rb', line 58

optional :gte, Time

#ltTime?

Returns:

  • (Time, nil)


63
# File 'lib/yoomoney/models/payment_list_params.rb', line 63

optional :lt, Time

#lteTime?

Returns:

  • (Time, nil)


68
# File 'lib/yoomoney/models/payment_list_params.rb', line 68

optional :lte, Time