Class: Stigg::Models::V1::CustomerListParams::CreatedAt

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/stigg/models/v1/customer_list_params.rb,
sig/stigg/models/v1/customer_list_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(gt: nil, gte: nil, lt: nil, lte: nil) ⇒ CreatedAt

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

Parameters:

  • gt (Time) (defaults to: nil)

    Greater than the specified createdAt value

  • gte (Time) (defaults to: nil)

    Greater than or equal to the specified createdAt value

  • lt (Time) (defaults to: nil)

    Less than the specified createdAt value

  • lte (Time) (defaults to: nil)

    Less than or equal to the specified createdAt value

  • gt: (Time) (defaults to: nil)
  • gte: (Time) (defaults to: nil)
  • lt: (Time) (defaults to: nil)
  • lte: (Time) (defaults to: nil)


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
103
104
105
106
107
108
109
110
111
# File 'lib/stigg/models/v1/customer_list_params.rb', line 76

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)


81
# File 'lib/stigg/models/v1/customer_list_params.rb', line 81

optional :gt, Time

#gteTime?

Greater than or equal to the specified createdAt value

Parameters:

  • (Time)

Returns:

  • (Time, nil)


87
# File 'lib/stigg/models/v1/customer_list_params.rb', line 87

optional :gte, Time

#ltTime?

Less than the specified createdAt value

Parameters:

  • (Time)

Returns:

  • (Time, nil)


93
# File 'lib/stigg/models/v1/customer_list_params.rb', line 93

optional :lt, Time

#lteTime?

Less than or equal to the specified createdAt value

Parameters:

  • (Time)

Returns:

  • (Time, nil)


99
# File 'lib/stigg/models/v1/customer_list_params.rb', line 99

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 })


100
# File 'sig/stigg/models/v1/customer_list_params.rbs', line 100

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