class Totvs::PasswordVault::Information

Public Instance Methods

data_group() click to toggle source
# File lib/totvs/password_vault/information.rb, line 13
def data_group
  "info"
end
required_params() click to toggle source
# File lib/totvs/password_vault/information.rb, line 9
def required_params
  [:content]
end
retrieve(id:) click to toggle source
Calls superclass method Totvs::PasswordVault::Base#retrieve
# File lib/totvs/password_vault/information.rb, line 4
def retrieve(id:)
  result = super
  parse_json result[:content]
end