Class: Stripe::Issuing::TokenUpdateParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::TokenUpdateParams
- Defined in:
- lib/stripe/params/issuing/token_update_params.rb
Instance Attribute Summary collapse
-
#expand ⇒ Object
Specifies which fields in the response should be expanded.
-
#status ⇒ Object
Specifies which status the token should be updated to.
Instance Method Summary collapse
-
#initialize(expand: nil, status: nil) ⇒ TokenUpdateParams
constructor
A new instance of TokenUpdateParams.
Methods inherited from RequestParams
Constructor Details
#initialize(expand: nil, status: nil) ⇒ TokenUpdateParams
Returns a new instance of TokenUpdateParams.
12 13 14 15 |
# File 'lib/stripe/params/issuing/token_update_params.rb', line 12 def initialize(expand: nil, status: nil) @expand = @status = status end |
Instance Attribute Details
#expand ⇒ Object
Specifies which fields in the response should be expanded.
8 9 10 |
# File 'lib/stripe/params/issuing/token_update_params.rb', line 8 def @expand end |
#status ⇒ Object
Specifies which status the token should be updated to.
10 11 12 |
# File 'lib/stripe/params/issuing/token_update_params.rb', line 10 def status @status end |