Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Latest commit

 

History

History
23 lines (11 loc) · 1.13 KB

EventBatchInputEventProperties.md

File metadata and controls

23 lines (11 loc) · 1.13 KB

EventBatchInputEventProperties

This field represents additional properties associated with the event, which are utilized in the calculation of the final fee. This object becomes mandatory when the targeted billable metric employs a sum_agg, max_agg, or unique_count_agg aggregation method. However, when using a simple count_agg, this object is not required.

Properties

Name Type Description Notes
operationType OperationTypeEnum The `operation_type` field is only necessary when adding or removing a specific unit when the targeted billable metric adopts a `unique_count_agg` aggregation method. In other cases, the `operation_type` field is not required. The valid values for the `operation_type` field are `add` or `remove`, which indicate whether the unit is being added or removed from the unique count aggregation, respectively. [optional]

Enum: OperationTypeEnum

Name Value
ADD "add"
REMOVE "remove"