class Puree::Model::JournalHeader
A minimal representation of a journal.
Attributes
title[R]
@return [String, nil]
type[R]
@return [String, nil]
uuid[R]
@return [String, nil]
Public Instance Methods
title=(v)
click to toggle source
@param v [String]
# File lib/puree/model/journal_header.rb, line 23 def title=(v) @title = v if v && !v.empty? end
type=(v)
click to toggle source
@param v [String]
# File lib/puree/model/journal_header.rb, line 28 def type=(v) @type = v if v && !v.empty? end
uuid=(v)
click to toggle source
@param v [String]
# File lib/puree/model/journal_header.rb, line 18 def uuid=(v) @uuid = v if v && !v.empty? end