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, tenant_only: 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, tenant_only: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see OpenAI::Models::Admin::Organization::AuditLogListParams for more details.
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 145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'lib/openai/models/admin/organization/audit_log_list_params.rb', line 114 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.
120 |
# File 'lib/openai/models/admin/organization/audit_log_list_params.rb', line 120 optional :gt, Integer |
#gte ⇒ Integer?
Return only events whose ‘effective_at` (Unix seconds) is greater than or equal to this value.
127 |
# File 'lib/openai/models/admin/organization/audit_log_list_params.rb', line 127 optional :gte, Integer |
#lt ⇒ Integer?
Return only events whose ‘effective_at` (Unix seconds) is less than this value.
133 |
# File 'lib/openai/models/admin/organization/audit_log_list_params.rb', line 133 optional :lt, Integer |
#lte ⇒ Integer?
Return only events whose ‘effective_at` (Unix seconds) is less than or equal to this value.
140 |
# File 'lib/openai/models/admin/organization/audit_log_list_params.rb', line 140 optional :lte, Integer |