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

- old
+ new

@@ -8,47 +8,47 @@ # @!attribute address # @return [Address] define_attribute :address, :Address - # @!attribute [r] created_at + # @!attribute created_at # @return [DateTime] Created at - define_attribute :created_at, DateTime, { :read_only => true } + define_attribute :created_at, DateTime - # @!attribute [r] deleted_at + # @!attribute deleted_at # @return [DateTime] Deleted at - define_attribute :deleted_at, DateTime, { :read_only => true } + define_attribute :deleted_at, DateTime # @!attribute features # @return [Array[String]] A list of features enabled for the site. define_attribute :features, Array, { :item_type => String } - # @!attribute [r] id + # @!attribute id # @return [String] Site ID - define_attribute :id, String, { :read_only => true } + define_attribute :id, String - # @!attribute [r] mode + # @!attribute mode # @return [String] Mode - define_attribute :mode, String, { :read_only => true, :enum => ["development", "production", "sandbox"] } + define_attribute :mode, String - # @!attribute [r] object + # @!attribute object # @return [String] Object type - define_attribute :object, String, { :read_only => true } + define_attribute :object, String - # @!attribute [r] public_api_key + # @!attribute public_api_key # @return [String] This value is used to configure RecurlyJS to submit tokenized billing information. - define_attribute :public_api_key, String, { :read_only => true } + define_attribute :public_api_key, String # @!attribute settings # @return [Settings] define_attribute :settings, :Settings - # @!attribute [r] subdomain + # @!attribute subdomain # @return [String] - define_attribute :subdomain, String, { :read_only => true } + define_attribute :subdomain, String - # @!attribute [r] updated_at + # @!attribute updated_at # @return [DateTime] Updated at - define_attribute :updated_at, DateTime, { :read_only => true } + define_attribute :updated_at, DateTime end end end