Sha256: cc28d86c319619aabe329f2f68a8eae71f2402786680e7889ebbba80bc253c14
Contents?: true
Size: 980 Bytes
Versions: 3
Compression:
Stored size: 980 Bytes
Contents
module Recurly module Resources class User < Resource # @!attribute [r] created_at # @return [DateTime] define_attribute :created_at, DateTime, {:read_only => true} # @!attribute [r] deleted_at # @return [DateTime] define_attribute :deleted_at, DateTime, {:read_only => true} # @!attribute email # @return [String] define_attribute :email, String # @!attribute first_name # @return [String] define_attribute :first_name, String # @!attribute [r] id # @return [String] define_attribute :id, String, {:read_only => true} # @!attribute last_name # @return [String] define_attribute :last_name, String # @!attribute [r] object # @return [String] Object type define_attribute :object, String, {:read_only => true} # @!attribute time_zone # @return [String] define_attribute :time_zone, String end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
recurly-3.0.0.beta.3 | lib/recurly/resources/user.rb |
recurly-3.0.0.beta.2 | lib/recurly/resources/user.rb |
recurly-3.0.0.beta.1 | lib/recurly/resources/user.rb |