Class: Stigg::Models::V1::SubscriptionListParams::CreatedAt
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Stigg::Models::V1::SubscriptionListParams::CreatedAt
- Defined in:
- lib/stigg/models/v1/subscription_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(after: nil, before: nil, created_at: nil, customer_id: nil, limit: nil, plan_id: nil, pricing_type: nil, resource_id: nil, status: nil, x_account_id: nil, x_environment_id: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see Stigg::Models::V1::SubscriptionListParams for more details.
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(after: nil, before: nil, created_at: nil, customer_id: nil, limit: nil, plan_id: nil, pricing_type: nil, resource_id: nil, status: nil, x_account_id: nil, x_environment_id: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Stigg::Models::V1::SubscriptionListParams for more details.
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/stigg/models/v1/subscription_list_params.rb', line 105 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
110 |
# File 'lib/stigg/models/v1/subscription_list_params.rb', line 110 optional :gt, Time |
#gte ⇒ Time?
Greater than or equal to the specified createdAt value
116 |
# File 'lib/stigg/models/v1/subscription_list_params.rb', line 116 optional :gte, Time |
#lt ⇒ Time?
Less than the specified createdAt value
122 |
# File 'lib/stigg/models/v1/subscription_list_params.rb', line 122 optional :lt, Time |
#lte ⇒ Time?
Less than or equal to the specified createdAt value
128 |
# File 'lib/stigg/models/v1/subscription_list_params.rb', line 128 optional :lte, Time |