Class: Google::Apis::HealthcareV1beta1::SchemaGroup
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::SchemaGroup
- 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
An HL7v2 logical group construct.
Instance Attribute Summary collapse
-
#choice ⇒ Boolean
(also: #choice?)
True indicates that this is a choice group, meaning that only one of its segments can exist in a given message.
-
#max_occurs ⇒ Fixnum
The maximum number of times this group can be repeated.
-
#members ⇒ Array<Google::Apis::HealthcareV1beta1::GroupOrSegment>
Nested groups and/or segments.
-
#min_occurs ⇒ Fixnum
The minimum number of times this group must be present/repeated.
-
#name ⇒ String
The name of this group.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SchemaGroup
constructor
A new instance of SchemaGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SchemaGroup
Returns a new instance of SchemaGroup.
6509 6510 6511 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6509 def initialize(**args) update!(**args) end |
Instance Attribute Details
#choice ⇒ Boolean Also known as: choice?
True indicates that this is a choice group, meaning that only one of its
segments can exist in a given message.
Corresponds to the JSON property choice
6485 6486 6487 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6485 def choice @choice end |
#max_occurs ⇒ Fixnum
The maximum number of times this group can be repeated. 0 or -1 means
unbounded.
Corresponds to the JSON property maxOccurs
6492 6493 6494 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6492 def max_occurs @max_occurs end |
#members ⇒ Array<Google::Apis::HealthcareV1beta1::GroupOrSegment>
Nested groups and/or segments.
Corresponds to the JSON property members
6497 6498 6499 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6497 def members @members end |
#min_occurs ⇒ Fixnum
The minimum number of times this group must be present/repeated.
Corresponds to the JSON property minOccurs
6502 6503 6504 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6502 def min_occurs @min_occurs end |
#name ⇒ String
The name of this group. For example, "ORDER_DETAIL".
Corresponds to the JSON property name
6507 6508 6509 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6507 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6514 6515 6516 6517 6518 6519 6520 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 6514 def update!(**args) @choice = args[:choice] if args.key?(:choice) @max_occurs = args[:max_occurs] if args.key?(:max_occurs) @members = args[:members] if args.key?(:members) @min_occurs = args[:min_occurs] if args.key?(:min_occurs) @name = args[:name] if args.key?(:name) end |