Method: OrcidClient::Notification#insert_id

Defined in:
lib/orcid_client/notification.rb

#insert_id(xml, id_type, value, relationship) ⇒ Object



100
101
102
103
104
105
106
# File 'lib/orcid_client/notification.rb', line 100

def insert_id(xml, id_type, value, relationship)
  xml.send(:'common:external-id') do
    xml.send(:'common:external-id-type', id_type)
    xml.send(:'common:external-id-value', value)
    xml.send(:'common:external-id-relationship', relationship)
  end
end