Class: Google::Apis::HealthcareV1beta1::Type
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::Type
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1beta1/classes.rb,
lib/google/apis/healthcare_v1beta1/representations.rb,
lib/google/apis/healthcare_v1beta1/representations.rb
Overview
A type definition for some HL7v2 type (incl. Segments and Datatypes).
Instance Attribute Summary collapse
-
#fields ⇒ Array<Google::Apis::HealthcareV1beta1::Field>
The (sub) fields this type has (if not primitive).
-
#name ⇒ String
The name of this type.
-
#primitive ⇒ String
If this is a primitive type then this field is the type of the primitive For example, STRING.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Type
constructor
A new instance of Type.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Type
Returns a new instance of Type.
7313 7314 7315 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7313 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fields ⇒ Array<Google::Apis::HealthcareV1beta1::Field>
The (sub) fields this type has (if not primitive).
Corresponds to the JSON property fields
7299 7300 7301 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7299 def fields @fields end |
#name ⇒ String
The name of this type. This would be the segment or datatype name. For example,
"PID" or "XPN".
Corresponds to the JSON property name
7305 7306 7307 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7305 def name @name end |
#primitive ⇒ String
If this is a primitive type then this field is the type of the primitive For
example, STRING. Leave unspecified for composite types.
Corresponds to the JSON property primitive
7311 7312 7313 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7311 def primitive @primitive end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7318 7319 7320 7321 7322 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7318 def update!(**args) @fields = args[:fields] if args.key?(:fields) @name = args[:name] if args.key?(:name) @primitive = args[:primitive] if args.key?(:primitive) end |