digidentity/libsaml

View on GitHub
lib/saml/elements/organization_display_name.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Saml
  module Elements
    class OrganizationDisplayName
      include Saml::ComplexTypes::LocalizedNameType
      include Saml::Base

      tag 'OrganizationDisplayName'
      namespace 'md'

      content :value, String
    end
  end
end