Sha256: a9bc1db6c19c9cfe6ad6461fee59bc626ad2f22c23ad55ce887d880bf5880ec1
Contents?: true
Size: 436 Bytes
Versions: 31
Compression:
Stored size: 436 Bytes
Contents
# frozen_string_literal: true module V1 module MediaTypes class User < Praxis::MediaType identifier 'application/json' domain_model 'V1::Resources::User' description 'A user in the system' attributes do attribute :id, Integer attribute :uuid, String attribute :email, String attribute :first_name, String attribute :last_name, String end end end end
Version data entries
31 entries across 31 versions & 1 rubygems