Class: CheckoutSdk::Forward::CreateSecretRequest
- Inherits:
-
Object
- Object
- CheckoutSdk::Forward::CreateSecretRequest
- Defined in:
- lib/checkout_sdk/forward/create_secret_request.rb
Overview
Request body for POST /forward/secrets.
Instance Attribute Summary collapse
-
#entity_id ⇒ String
Optional entity scope.
-
#name ⇒ String
Secret name (1-64 alphanumeric chars).
-
#value ⇒ String
Plaintext secret value (max 8KB).
Instance Attribute Details
#entity_id ⇒ String
Returns Optional entity scope.
13 14 15 |
# File 'lib/checkout_sdk/forward/create_secret_request.rb', line 13 class CreateSecretRequest attr_accessor :name, :value, :entity_id end |
#name ⇒ String
Returns Secret name (1-64 alphanumeric chars).
13 14 15 |
# File 'lib/checkout_sdk/forward/create_secret_request.rb', line 13 class CreateSecretRequest attr_accessor :name, :value, :entity_id end |
#value ⇒ String
Returns Plaintext secret value (max 8KB).
13 14 15 |
# File 'lib/checkout_sdk/forward/create_secret_request.rb', line 13 class CreateSecretRequest attr_accessor :name, :value, :entity_id end |