Class: HealthVault::WCData::Types::LocalizedString
- Inherits:
-
ComplexType
- Object
- ComplexType
- HealthVault::WCData::Types::LocalizedString
- Defined in:
- lib/wc_data/generated/types/localized_string.rb
Instance Attribute Summary
Attributes inherited from ComplexType
Instance Method Summary collapse
-
#data ⇒ Object
returns: a String.
-
#data=(value) ⇒ Object
REQUIRED value is a String.
-
#initialize ⇒ LocalizedString
constructor
A new instance of LocalizedString.
-
#language ⇒ Object
returns: a HealthVault::WCData::Types::Iso6391.
-
#language=(value) ⇒ Object
value is a HealthVault::WCData::Types::Iso6391.
Methods inherited from ComplexType
#add_new_to_children, #element, #method_missing, #optional_elements, #parse_element, #query_elements, #required_elements, #to_s, #valid?
Constructor Details
#initialize ⇒ LocalizedString
Returns a new instance of LocalizedString.
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/wc_data/generated/types/localized_string.rb', line 43 def initialize super self.tag_name = 'localizedstring' @children['data'] = {:name => 'data', :class => String, :value => nil, :min => 1, :max => 1, :order => 0, :place => :extension, :choice => 0 } @children['data'][:value] = String.new @children['language'] = {:name => 'language', :class => HealthVault::WCData::Types::Iso6391, :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
#data ⇒ Object
returns: a String
24 25 26 |
# File 'lib/wc_data/generated/types/localized_string.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/types/localized_string.rb', line 19 def data=(value) @children['data'][:value] = value end |
#language ⇒ Object
returns: a HealthVault::WCData::Types::Iso6391
37 38 39 |
# File 'lib/wc_data/generated/types/localized_string.rb', line 37 def language return @children['language'][:value] end |
#language=(value) ⇒ Object
value is a HealthVault::WCData::Types::Iso6391
32 33 34 |
# File 'lib/wc_data/generated/types/localized_string.rb', line 32 def language=(value) @children['language'][:value] = value end |