class WebProperty

Attributes

display_name[RW]
identifier[RW]
type[RW]

Public Class Methods

from_hash(hash) click to toggle source
# File lib/miiCardConsumers.rb, line 246
def self.from_hash(hash)
        return WebProperty.new(
                hash["Verified"],
                hash["DisplayName"], 
                hash["Identifier"], 
                hash["Type"]
        )
end
new(verified, display_name, identifier, type) click to toggle source
Calls superclass method Claim::new
# File lib/miiCardConsumers.rb, line 238
def initialize(verified, display_name, identifier, type)
        super(verified)
        
        @display_name = display_name
        @identifier = identifier
        @type = type
end