Class: HealthVault::WCData::Request::Xsl

Inherits:
ComplexType show all
Defined in:
lib/wc_data/generated/request/xsl.rb

Instance Attribute Summary

Attributes inherited from ComplexType

#tag_name

Instance Method Summary collapse

Methods inherited from ComplexType

#add_new_to_children, #element, #method_missing, #optional_elements, #parse_element, #query_elements, #required_elements, #to_s, #valid?

Constructor Details

#initializeXsl

Returns a new instance of Xsl.



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/wc_data/generated/request/xsl.rb', line 43

def initialize
  super
  self.tag_name = 'xsl'

  
  @children['data'] = {:name => 'data', :class => String, :value => nil, :min => 1, :max => 1, :order => 0, :place => :extension, :choice => 0 }
    
  @children['data'][:value] = String.new
    
  

  
  @children['content-type'] = {:name => 'content-type', :class => HealthVault::WCData::Types::String128, :value => nil, :min => 0, :max => 1, :order => 0, :place => :attribute, :choice => 0 }
    
  

end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class HealthVault::WCData::ComplexType

Instance Method Details

#content_typeObject

returns: a HealthVault::WCData::Types::String128



37
38
39
# File 'lib/wc_data/generated/request/xsl.rb', line 37

def content_type
  return @children['content-type'][:value]
end

#content_type=(value) ⇒ Object

value is a HealthVault::WCData::Types::String128



32
33
34
# File 'lib/wc_data/generated/request/xsl.rb', line 32

def content_type=(value)
  @children['content-type'][:value] = value
end

#dataObject

returns: a String



24
25
26
# File 'lib/wc_data/generated/request/xsl.rb', line 24

def data
  return @children['data'][:value]
end

#data=(value) ⇒ Object

REQUIRED value is a String



19
20
21
# File 'lib/wc_data/generated/request/xsl.rb', line 19

def data=(value)
  @children['data'][:value] = value
end