Sha256: 8ebfff25255f488d8f4a116d98f69b06af47ec60278fb9071499e2728e7701b9

Contents?: true

Size: 812 Bytes

Versions: 2

Compression:

Stored size: 812 Bytes

Contents

module Recurly
  module Resources
    class AccountMini < Resource

      # @!attribute code
      #   @return [String] The unique identifier of the account.
      define_attribute :code, String

      # @!attribute email
      #   @return [String] The email address used for communicating with this customer.
      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}
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
recurly-3.0.0.beta.3 lib/recurly/resources/account_mini.rb
recurly-3.0.0.beta.2 lib/recurly/resources/account_mini.rb