class Angus::SDoc::Definitions::UriElement

Attributes

description[RW]

@!attribute [rw] description

@return [String] the description of the uri element.
name[RW]

@!attribute [rw] name

@return [String] the name of the uri element.

Public Class Methods

new(name = nil, description = nil) click to toggle source
# File lib/angus/definitions/uri_element.rb, line 13
def initialize(name = nil, description = nil)
  @name = name
  @description = description
end