Parameters for meter event create.
Summary
Types
@type t() :: %Stripe.Params.Billing.MeterEventCreateParams{ event_name: String.t(), expand: [String.t()] | nil, identifier: String.t() | nil, payload: %{required(String.t()) => String.t()}, timestamp: integer() | nil }
event_name- The name of the meter event. Corresponds with theevent_namefield on a meter. Max length: 100.expand- Specifies which fields in the response should be expanded.identifier- A unique identifier for the event. If not provided, one is generated. We recommend using UUID-like identifiers. We will enforce uniqueness within a rolling period of at least 24 hours. The enforcement of uniqueness primarily addresses issues arising from accidental retries or other problems occurring within extremely brief time intervals. This approach helps prevent duplicate entries and ensures data integrity in high-frequency operations. Max length: 100.payload- The payload of the event. This must contain the fields corresponding to a meter'scustomer_mapping.event_payload_key(default isstripe_customer_id) andvalue_settings.event_payload_key(default isvalue). Read more about the payload.timestamp- The time of the event. Measured in seconds since the Unix epoch. Must be within the past 35 calendar days or up to 5 minutes in the future. Defaults to current timestamp if not specified. Format: Unix timestamp.