Class: KeeperSecretsManager::Dto::UpdatePayload
- Inherits:
-
BasePayload
- Object
- BasePayload
- KeeperSecretsManager::Dto::UpdatePayload
- Defined in:
- lib/keeper_secrets_manager/dto/payload.rb
Overview
Update record payload
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
-
#record_uid ⇒ Object
Returns the value of attribute record_uid.
-
#revision ⇒ Object
Returns the value of attribute revision.
-
#transaction_type ⇒ Object
Returns the value of attribute transaction_type.
Attributes inherited from BasePayload
Instance Method Summary collapse
-
#initialize ⇒ UpdatePayload
constructor
A new instance of UpdatePayload.
Methods inherited from BasePayload
Constructor Details
#initialize ⇒ UpdatePayload
62 63 64 65 |
# File 'lib/keeper_secrets_manager/dto/payload.rb', line 62 def initialize super() @transaction_type = 'general' end |
Instance Attribute Details
#data ⇒ Object
Returns the value of attribute data.
60 61 62 |
# File 'lib/keeper_secrets_manager/dto/payload.rb', line 60 def data @data end |
#record_uid ⇒ Object
Returns the value of attribute record_uid.
60 61 62 |
# File 'lib/keeper_secrets_manager/dto/payload.rb', line 60 def record_uid @record_uid end |
#revision ⇒ Object
Returns the value of attribute revision.
60 61 62 |
# File 'lib/keeper_secrets_manager/dto/payload.rb', line 60 def revision @revision end |
#transaction_type ⇒ Object
Returns the value of attribute transaction_type.
60 61 62 |
# File 'lib/keeper_secrets_manager/dto/payload.rb', line 60 def transaction_type @transaction_type end |