Class: Stigg::Models::V1::FeatureListFeaturesParams::CreatedAt

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/stigg/models/v1/feature_list_features_params.rb,
sig/stigg/models/v1/feature_list_features_params.rbs

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(id: nil, after: nil, before: nil, created_at: nil, feature_type: nil, limit: nil, meter_type: nil, status: nil, x_account_id: nil, x_environment_id: nil, request_options: {}) ⇒ CreatedAt

Returns a new instance of CreatedAt.

Parameters:

  • id (String) (defaults to: nil)

    Filter by entity ID

  • after (String) (defaults to: nil)

    Return items that come after this cursor

  • before (String) (defaults to: nil)

    Return items that come before this cursor

  • created_at (Stigg::Models::V1::FeatureListFeaturesParams::CreatedAt) (defaults to: nil)

    Filter by creation date using range operators: gt, gte, lt, lte

  • feature_type (Array<Symbol, Stigg::Models::V1::FeatureListFeaturesParams::FeatureType>) (defaults to: nil)

    Filter by feature type. Supports comma-separated values for multiple types

  • limit (Integer) (defaults to: nil)

    Maximum number of items to return

  • meter_type (Array<Symbol, Stigg::Models::V1::FeatureListFeaturesParams::MeterType>) (defaults to: nil)

    Filter by meter type. Supports comma-separated values for multiple types

  • status (Array<Symbol, Stigg::Models::V1::FeatureListFeaturesParams::Status>) (defaults to: nil)

    Filter by feature status. Supports comma-separated values for multiple statuses

  • x_account_id (String) (defaults to: nil)
  • x_environment_id (String) (defaults to: nil)
  • request_options (Stigg::RequestOptions, Hash{Symbol=>Object}) (defaults to: {})
  • gt: (Time)
  • gte: (Time)
  • lt: (Time)
  • lte: (Time)


95
96
97
98
99
100
101
102
103
104
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
# File 'lib/stigg/models/v1/feature_list_features_params.rb', line 95

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

#gtTime?

Greater than the specified createdAt value

Parameters:

  • (Time)

Returns:

  • (Time, nil)


100
# File 'lib/stigg/models/v1/feature_list_features_params.rb', line 100

optional :gt, Time

#gteTime?

Greater than or equal to the specified createdAt value

Parameters:

  • (Time)

Returns:

  • (Time, nil)


106
# File 'lib/stigg/models/v1/feature_list_features_params.rb', line 106

optional :gte, Time

#ltTime?

Less than the specified createdAt value

Parameters:

  • (Time)

Returns:

  • (Time, nil)


112
# File 'lib/stigg/models/v1/feature_list_features_params.rb', line 112

optional :lt, Time

#lteTime?

Less than or equal to the specified createdAt value

Parameters:

  • (Time)

Returns:

  • (Time, nil)


118
# File 'lib/stigg/models/v1/feature_list_features_params.rb', line 118

optional :lte, Time

Instance Method Details

#to_hash{ gt: Time, gte: Time, lt: Time, lte: Time }

Returns:

  • ({ gt: Time, gte: Time, lt: Time, lte: Time })


120
# File 'sig/stigg/models/v1/feature_list_features_params.rbs', line 120

def to_hash: -> { gt: Time, gte: Time, lt: Time, lte: Time }