Class: OpenAI::Models::Admin::Organization::AuditLogListParams::EffectiveAt
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- OpenAI::Models::Admin::Organization::AuditLogListParams::EffectiveAt
- Defined in:
- lib/openai/models/admin/organization/audit_log_list_params.rb
Instance Attribute Summary collapse
-
#gt ⇒ Integer?
Return only events whose ‘effective_at` (Unix seconds) is greater than this value.
-
#gte ⇒ Integer?
Return only events whose ‘effective_at` (Unix seconds) is greater than or equal to this value.
-
#lt ⇒ Integer?
Return only events whose ‘effective_at` (Unix seconds) is less than this value.
-
#lte ⇒ Integer?
Return only events whose ‘effective_at` (Unix seconds) is less than or equal to this value.
Instance Method Summary collapse
-
#initialize(actor_emails: nil, actor_ids: nil, after: nil, before: nil, effective_at: nil, event_types: nil, limit: nil, project_ids: nil, resource_ids: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see OpenAI::Models::Admin::Organization::AuditLogListParams 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(actor_emails: nil, actor_ids: nil, after: nil, before: nil, effective_at: nil, event_types: nil, limit: nil, project_ids: nil, resource_ids: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see OpenAI::Models::Admin::Organization::AuditLogListParams for more details.
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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
# File 'lib/openai/models/admin/organization/audit_log_list_params.rb', line 102 class EffectiveAt < OpenAI::Internal::Type::BaseModel # @!attribute gt # Return only events whose `effective_at` (Unix seconds) is greater than this # value. # # @return [Integer, nil] optional :gt, Integer # @!attribute gte # Return only events whose `effective_at` (Unix seconds) is greater than or equal # to this value. # # @return [Integer, nil] optional :gte, Integer # @!attribute lt # Return only events whose `effective_at` (Unix seconds) is less than this value. # # @return [Integer, nil] optional :lt, Integer # @!attribute lte # Return only events whose `effective_at` (Unix seconds) is less than or equal to # this value. # # @return [Integer, nil] optional :lte, Integer # @!method initialize(gt: nil, gte: nil, lt: nil, lte: nil) # Some parameter documentations has been truncated, see # {OpenAI::Models::Admin::Organization::AuditLogListParams::EffectiveAt} for more # details. # # Return only events whose `effective_at` (Unix seconds) is in this range. # # @param gt [Integer] Return only events whose `effective_at` (Unix seconds) is greater than this valu # # @param gte [Integer] Return only events whose `effective_at` (Unix seconds) is greater than or equal # # @param lt [Integer] Return only events whose `effective_at` (Unix seconds) is less than this value. # # @param lte [Integer] Return only events whose `effective_at` (Unix seconds) is less than or equal to end |
Instance Attribute Details
#gt ⇒ Integer?
Return only events whose ‘effective_at` (Unix seconds) is greater than this value.
108 |
# File 'lib/openai/models/admin/organization/audit_log_list_params.rb', line 108 optional :gt, Integer |
#gte ⇒ Integer?
Return only events whose ‘effective_at` (Unix seconds) is greater than or equal to this value.
115 |
# File 'lib/openai/models/admin/organization/audit_log_list_params.rb', line 115 optional :gte, Integer |
#lt ⇒ Integer?
Return only events whose ‘effective_at` (Unix seconds) is less than this value.
121 |
# File 'lib/openai/models/admin/organization/audit_log_list_params.rb', line 121 optional :lt, Integer |
#lte ⇒ Integer?
Return only events whose ‘effective_at` (Unix seconds) is less than or equal to this value.
128 |
# File 'lib/openai/models/admin/organization/audit_log_list_params.rb', line 128 optional :lte, Integer |