Class: Yoomoney::Models::RefundListParams::CreatedAt
Instance Attribute Summary collapse
Instance Method Summary
collapse
==, #==, #[], 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
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(gt: nil, gte: nil, lt: nil, lte: nil) ⇒ CreatedAt
Returns a new instance of CreatedAt.
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# File 'lib/yoomoney/models/refund_list_params.rb', line 43
class CreatedAt < Yoomoney::Internal::Type::BaseModel
optional :gt, Time
optional :gte, Time
optional :lt, Time
optional :lte, Time
end
|
Instance Attribute Details
#gt ⇒ Time?
47
|
# File 'lib/yoomoney/models/refund_list_params.rb', line 47
optional :gt, Time
|
#gte ⇒ Time?
52
|
# File 'lib/yoomoney/models/refund_list_params.rb', line 52
optional :gte, Time
|
#lt ⇒ Time?
57
|
# File 'lib/yoomoney/models/refund_list_params.rb', line 57
optional :lt, Time
|
#lte ⇒ Time?
62
|
# File 'lib/yoomoney/models/refund_list_params.rb', line 62
optional :lte, Time
|
Instance Method Details
#to_hash ⇒ { gt: Time, gte: Time, lt: Time, lte: Time }
80
|
# File 'sig/yoomoney/models/refund_list_params.rbs', line 80
def to_hash: -> { gt: Time, gte: Time, lt: Time, lte: Time }
|