Sha256: 68277b65749553b39cb288a4b5dea32179e097cf276930494d3b885dc286af7f
Contents?: true
Size: 656 Bytes
Versions: 6
Compression:
Stored size: 656 Bytes
Contents
module Scimitar module Schema # Represents the schema for the Name complex type # See also Scimitar::ComplexTypes::Name class Name < Base def self.scim_attributes @scim_attributes ||= [ Attribute.new(name: 'familyName', type: 'string'), Attribute.new(name: 'givenName', type: 'string'), Attribute.new(name: 'middleName', type: 'string'), Attribute.new(name: 'formatted', type: 'string'), Attribute.new(name: 'honorificPrefix', type: 'string'), Attribute.new(name: 'honorificSuffix', type: 'string'), ] end end end end
Version data entries
6 entries across 6 versions & 1 rubygems