class PkiExpress::TrustServiceName

Attributes

name[RW]

Public Class Methods

new(model) click to toggle source
# File lib/pki_express/trust_service_info.rb, line 29
def initialize(model)
  @name = nil

  unless model.nil?
    @name = model.fetch(:name)
  end
end