class Puree::Model::RelatedContentHeader

A minimal representation of related content.

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/related_content_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/related_content_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/related_content_header.rb, line 18
def uuid=(v)
  @uuid = v if v && !v.empty?
end