lib/recurly/resources/user.rb in recurly-3.0.0.beta.4 vs lib/recurly/resources/user.rb in recurly-3.0.0.beta.5

- old
+ new

@@ -4,36 +4,36 @@ # need and we will usher them to the appropriate places. module Recurly module Resources class User < Resource - # @!attribute [r] created_at + # @!attribute created_at # @return [DateTime] - define_attribute :created_at, DateTime, { :read_only => true } + define_attribute :created_at, DateTime - # @!attribute [r] deleted_at + # @!attribute deleted_at # @return [DateTime] - define_attribute :deleted_at, DateTime, { :read_only => true } + define_attribute :deleted_at, DateTime # @!attribute email # @return [String] define_attribute :email, String # @!attribute first_name # @return [String] define_attribute :first_name, String - # @!attribute [r] id + # @!attribute id # @return [String] - define_attribute :id, String, { :read_only => true } + define_attribute :id, String # @!attribute last_name # @return [String] define_attribute :last_name, String - # @!attribute [r] object + # @!attribute object # @return [String] Object type - define_attribute :object, String, { :read_only => true } + define_attribute :object, String # @!attribute time_zone # @return [String] define_attribute :time_zone, String end