Class: Stripe::Billing::Meter::UpdateParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Billing::Meter::UpdateParams
- Defined in:
- lib/stripe/resources/billing/meter.rb
Instance Attribute Summary collapse
-
#display_name ⇒ Object
The meter’s name.
-
#expand ⇒ Object
Specifies which fields in the response should be expanded.
Instance Method Summary collapse
-
#initialize(display_name: nil, expand: nil) ⇒ UpdateParams
constructor
A new instance of UpdateParams.
Methods inherited from RequestParams
Constructor Details
#initialize(display_name: nil, expand: nil) ⇒ UpdateParams
Returns a new instance of UpdateParams.
143 144 145 146 |
# File 'lib/stripe/resources/billing/meter.rb', line 143 def initialize(display_name: nil, expand: nil) @display_name = display_name @expand = end |
Instance Attribute Details
#display_name ⇒ Object
The meter’s name. Not visible to the customer.
139 140 141 |
# File 'lib/stripe/resources/billing/meter.rb', line 139 def display_name @display_name end |
#expand ⇒ Object
Specifies which fields in the response should be expanded.
141 142 143 |
# File 'lib/stripe/resources/billing/meter.rb', line 141 def @expand end |