class Puree::Model::Identifier
An identifier.
Attributes
id[R]
@return [String, nil]
type[R]
@return [String, nil]
Public Instance Methods
id=(v)
click to toggle source
@param v [String]
# File lib/puree/model/identifier.rb, line 15 def id=(v) @id = v if v && !v.empty? end
type=(v)
click to toggle source
@param v [String]
# File lib/puree/model/identifier.rb, line 20 def type=(v) @type = v if v && !v.empty? end