# frozen_string_literal: true # Generated by the protocol buffer compiler. DO NOT EDIT! # source: patient.proto require 'google/protobuf' require 'address_pb' require 'demographics_pb' require 'identifier_pb' require 'name_pb' require 'phone_number_pb' require 'relationship_pb' descriptor_data = "\n\rpatient.proto\x12\x0fprimary.connect\x1a\raddress.proto\x1a\x12\x64\x65mographics.proto\x1a\x10identifier.proto\x1a\nname.proto\x1a\x12phone_number.proto\x1a\x12relationship.proto\"\xa8\x03\n\x07Patient\x12\x30\n\x0bidentifiers\x18\x01 \x03(\x0b\x32\x1b.primary.connect.Identifier\x12\x33\n\x0c\x64\x65mographics\x18\x02 \x01(\x0b\x32\x1d.primary.connect.Demographics\x12\r\n\x05notes\x18\x03 \x03(\t\x12\x32\n\x08\x63ontacts\x18\x04 \x03(\x0b\x32 .primary.connect.Patient.Contact\x1a\xf2\x01\n\x07\x43ontact\x12#\n\x04name\x18\x01 \x01(\x0b\x32\x15.primary.connect.Name\x12)\n\x07\x61\x64\x64ress\x18\x02 \x01(\x0b\x32\x18.primary.connect.Address\x12\x33\n\rphone_numbers\x18\x03 \x03(\x0b\x32\x1c.primary.connect.PhoneNumber\x12:\n\x13relation_to_patient\x18\x04 \x01(\x0e\x32\x1d.primary.connect.Relationship\x12\x17\n\x0f\x65mail_addresses\x18\x05 \x03(\t\x12\r\n\x05roles\x18\x06 \x03(\tB\x11Z\x0fprimary.connectb\x06proto3" pool = Google::Protobuf::DescriptorPool.generated_pool begin pool.add_serialized_file(descriptor_data) rescue TypeError # Compatibility code: will be removed in the next major version. require 'google/protobuf/descriptor_pb' parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data) parsed.clear_dependency serialized = parsed.class.encode(parsed) file = pool.add_serialized_file(serialized) warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}" imports = [ ["primary.connect.Identifier", "identifier.proto"], ["primary.connect.Demographics", "demographics.proto"], ["primary.connect.Name", "name.proto"], ["primary.connect.Address", "address.proto"], ["primary.connect.PhoneNumber", "phone_number.proto"], ] imports.each do |type_name, expected_filename| import_file = pool.lookup(type_name).file_descriptor if import_file.name != expected_filename warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}" end end warn "Each proto file must use a consistent fully-qualified name." warn "This will become an error in the next major version." end module Primary module Connect Patient = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("primary.connect.Patient").msgclass Patient::Contact = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("primary.connect.Patient.Contact").msgclass end end