Class: MetronomeSDK::Models::V1::CustomerPreviewEventsParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- MetronomeSDK::Models::V1::CustomerPreviewEventsParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/metronome_sdk/models/v1/customer_preview_events_params.rb
Overview
Defined Under Namespace
Instance Attribute Summary collapse
- #customer_id ⇒ String
-
#events ⇒ Array<MetronomeSDK::Models::V1::CustomerPreviewEventsParams::Event>
Array of usage events to include in the preview calculation.
-
#mode ⇒ Symbol, ...
Controls how the provided events are combined with existing usage data.
-
#skip_zero_qty_line_items ⇒ Boolean?
When ‘true`, line items with zero quantity are excluded from the response.
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
-
#initialize(event_type: , properties: nil, timestamp: nil, transaction_id: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see Event for more details.
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
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(event_type: , properties: nil, timestamp: nil, transaction_id: nil) ⇒ Object
Some parameter documentations has been truncated, see Event for more details.
|
|
# File 'lib/metronome_sdk/models/v1/customer_preview_events_params.rb', line 78
|
Instance Attribute Details
#customer_id ⇒ String
14 |
# File 'lib/metronome_sdk/models/v1/customer_preview_events_params.rb', line 14 required :customer_id, String |
#events ⇒ Array<MetronomeSDK::Models::V1::CustomerPreviewEventsParams::Event>
Array of usage events to include in the preview calculation. Must contain at least one event in ‘merge` mode.
21 22 |
# File 'lib/metronome_sdk/models/v1/customer_preview_events_params.rb', line 21 required :events, -> { MetronomeSDK::Internal::Type::ArrayOf[MetronomeSDK::V1::CustomerPreviewEventsParams::Event] } |
#mode ⇒ Symbol, ...
Controls how the provided events are combined with existing usage data. Use ‘replace` to calculate the preview as if these are the only events for the customer, ignoring all historical usage. Use `merge` to combine these events with the customer’s existing usage. Defaults to ‘replace`.
31 |
# File 'lib/metronome_sdk/models/v1/customer_preview_events_params.rb', line 31 optional :mode, enum: -> { MetronomeSDK::V1::CustomerPreviewEventsParams::Mode } |
#skip_zero_qty_line_items ⇒ Boolean?
When ‘true`, line items with zero quantity are excluded from the response.
37 |
# File 'lib/metronome_sdk/models/v1/customer_preview_events_params.rb', line 37 optional :skip_zero_qty_line_items, MetronomeSDK::Internal::Type::Boolean |