Class: Stigg::Models::V1::Customers::PromotionalEntitlementListParams::CreatedAt
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Stigg::Models::V1::Customers::PromotionalEntitlementListParams::CreatedAt
- Defined in:
- lib/stigg/models/v1/customers/promotional_entitlement_list_params.rb
Instance Attribute Summary collapse
-
#gt ⇒ Time?
Greater than the specified createdAt value.
-
#gte ⇒ Time?
Greater than or equal to the specified createdAt value.
-
#lt ⇒ Time?
Less than the specified createdAt value.
-
#lte ⇒ Time?
Less than or equal to the specified createdAt value.
Instance Method Summary collapse
-
#initialize(gt: nil, gte: nil, lt: nil, lte: nil) ⇒ Object
constructor
Filter by creation date using range operators: gt, gte, lt, lte.
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(gt: nil, gte: nil, lt: nil, lte: nil) ⇒ Object
Filter by creation date using range operators: gt, gte, lt, lte
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
# File 'lib/stigg/models/v1/customers/promotional_entitlement_list_params.rb', line 67 class CreatedAt < Stigg::Internal::Type::BaseModel # @!attribute gt # Greater than the specified createdAt value # # @return [Time, nil] optional :gt, Time # @!attribute gte # Greater than or equal to the specified createdAt value # # @return [Time, nil] optional :gte, Time # @!attribute lt # Less than the specified createdAt value # # @return [Time, nil] optional :lt, Time # @!attribute lte # Less than or equal to the specified createdAt value # # @return [Time, nil] optional :lte, Time # @!method initialize(gt: nil, gte: nil, lt: nil, lte: nil) # Filter by creation date using range operators: gt, gte, lt, lte # # @param gt [Time] Greater than the specified createdAt value # # @param gte [Time] Greater than or equal to the specified createdAt value # # @param lt [Time] Less than the specified createdAt value # # @param lte [Time] Less than or equal to the specified createdAt value end |
Instance Attribute Details
#gt ⇒ Time?
Greater than the specified createdAt value
72 |
# File 'lib/stigg/models/v1/customers/promotional_entitlement_list_params.rb', line 72 optional :gt, Time |
#gte ⇒ Time?
Greater than or equal to the specified createdAt value
78 |
# File 'lib/stigg/models/v1/customers/promotional_entitlement_list_params.rb', line 78 optional :gte, Time |
#lt ⇒ Time?
Less than the specified createdAt value
84 |
# File 'lib/stigg/models/v1/customers/promotional_entitlement_list_params.rb', line 84 optional :lt, Time |
#lte ⇒ Time?
Less than or equal to the specified createdAt value
90 |
# File 'lib/stigg/models/v1/customers/promotional_entitlement_list_params.rb', line 90 optional :lte, Time |