Class: KeeperSecretsManager::Dto::GetPayload
- Inherits:
-
BasePayload
- Object
- BasePayload
- KeeperSecretsManager::Dto::GetPayload
- Defined in:
- lib/keeper_secrets_manager/dto/payload.rb
Overview
Get secrets payload
Instance Attribute Summary collapse
-
#file_uids ⇒ Object
Returns the value of attribute file_uids.
-
#public_key ⇒ Object
Returns the value of attribute public_key.
-
#requested_folders ⇒ Object
Returns the value of attribute requested_folders.
-
#requested_records ⇒ Object
Returns the value of attribute requested_records.
Attributes inherited from BasePayload
Instance Method Summary collapse
-
#initialize ⇒ GetPayload
constructor
A new instance of GetPayload.
Methods inherited from BasePayload
Constructor Details
#initialize ⇒ GetPayload
Returns a new instance of GetPayload.
40 41 42 43 44 45 |
# File 'lib/keeper_secrets_manager/dto/payload.rb', line 40 def initialize super() @requested_records = nil @requested_folders = nil @file_uids = nil end |
Instance Attribute Details
#file_uids ⇒ Object
Returns the value of attribute file_uids.
38 39 40 |
# File 'lib/keeper_secrets_manager/dto/payload.rb', line 38 def file_uids @file_uids end |
#public_key ⇒ Object
Returns the value of attribute public_key.
38 39 40 |
# File 'lib/keeper_secrets_manager/dto/payload.rb', line 38 def public_key @public_key end |
#requested_folders ⇒ Object
Returns the value of attribute requested_folders.
38 39 40 |
# File 'lib/keeper_secrets_manager/dto/payload.rb', line 38 def requested_folders @requested_folders end |
#requested_records ⇒ Object
Returns the value of attribute requested_records.
38 39 40 |
# File 'lib/keeper_secrets_manager/dto/payload.rb', line 38 def requested_records @requested_records end |