Class: Stripe::Billing::MeterEvent::CreateParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/resources/billing/meter_event.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(event_name: nil, expand: nil, identifier: nil, payload: nil, timestamp: nil) ⇒ CreateParams

Returns a new instance of CreateParams.



27
28
29
30
31
32
33
# File 'lib/stripe/resources/billing/meter_event.rb', line 27

def initialize(event_name: nil, expand: nil, identifier: nil, payload: nil, timestamp: nil)
  @event_name = event_name
  @expand = expand
  @identifier = identifier
  @payload = payload
  @timestamp = timestamp
end

Instance Attribute Details

#event_nameObject

The name of the meter event. Corresponds with the ‘event_name` field on a meter.



17
18
19
# File 'lib/stripe/resources/billing/meter_event.rb', line 17

def event_name
  @event_name
end

#expandObject

Specifies which fields in the response should be expanded.



19
20
21
# File 'lib/stripe/resources/billing/meter_event.rb', line 19

def expand
  @expand
end

#identifierObject

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.



21
22
23
# File 'lib/stripe/resources/billing/meter_event.rb', line 21

def identifier
  @identifier
end

#payloadObject

The payload of the event. This must contain the fields corresponding to a meter’s ‘customer_mapping.event_payload_key` (default is `stripe_customer_id`) and `value_settings.event_payload_key` (default is `value`). Read more about the [payload](docs.stripe.com/billing/subscriptions/usage-based/recording-usage#payload-key-overrides).



23
24
25
# File 'lib/stripe/resources/billing/meter_event.rb', line 23

def payload
  @payload
end

#timestampObject

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.



25
26
27
# File 'lib/stripe/resources/billing/meter_event.rb', line 25

def timestamp
  @timestamp
end