Sha256: 09d66972962551a8c4fcad9ecfe89ac2fe99926cbec01824e8ac51f3a93dd064
Contents?: true
Size: 790 Bytes
Versions: 36
Compression:
Stored size: 790 Bytes
Contents
module Scimitar module Schema # Represents the schema for the Address complex type. # # See also Scimitar::ComplexTypes::Address # class Address < Base def self.scim_attributes @scim_attributes ||= [ Attribute.new(name: 'type', type: 'string'), Attribute.new(name: 'primary', type: 'boolean'), Attribute.new(name: 'formatted', type: 'string'), Attribute.new(name: 'streetAddress', type: 'string'), Attribute.new(name: 'locality', type: 'string'), Attribute.new(name: 'region', type: 'string'), Attribute.new(name: 'postalCode', type: 'string'), Attribute.new(name: 'country', type: 'string'), ] end end end end
Version data entries
36 entries across 36 versions & 2 rubygems