class SML::PublicClose::Response
Attributes
global_signature[RW]
Public Class Methods
construct(array_rep)
click to toggle source
# File lib/ruby-sml/sml-publicclose.rb, line 35 def self.construct(array_rep) return nil if array_rep.nil? return SML::PublicClose::Response.new(array_rep.shift) end
new(global_signature)
click to toggle source
# File lib/ruby-sml/sml-publicclose.rb, line 31 def initialize(global_signature) @global_signature = global_signature end
pconstruct(o={})
click to toggle source
# File lib/ruby-sml/sml-publicclose.rb, line 40 def self.pconstruct(o={}) return SML::PublicClose::Response.new(o[:global_signature]) end
Public Instance Methods
to_a()
click to toggle source
# File lib/ruby-sml/sml-publicclose.rb, line 44 def to_a return [] << global_signature end