Class: Nis::Struct::AccountMetaDataPair
- Inherits:
-
Object
- Object
- Nis::Struct::AccountMetaDataPair
- Includes:
- Util::Assignable
- Defined in:
- lib/nis/struct/account_meta_data_pair.rb
Overview
Instance Attribute Summary collapse
-
#account ⇒ AccountInfo
The current value of account.
-
#meta ⇒ AccountMetaData
The current value of meta.
Class Method Summary collapse
Methods included from Util::Assignable
#[], #initialize, #to_hash, #to_json
Instance Attribute Details
#account ⇒ AccountInfo
Returns the current value of account.
5 6 7 |
# File 'lib/nis/struct/account_meta_data_pair.rb', line 5 def account @account end |
#meta ⇒ AccountMetaData
Returns the current value of meta.
5 6 7 |
# File 'lib/nis/struct/account_meta_data_pair.rb', line 5 def @meta end |
Class Method Details
.build(meta:, account:) ⇒ Object
9 10 11 12 13 14 |
# File 'lib/nis/struct/account_meta_data_pair.rb', line 9 def self.build(meta:, account:) new( meta: AccountMetaData.build(), account: AccountInfo.build(account) ) end |