Sha256: 43b019647bc0a69423fd4967a6a42acb4b3837e6e3ea4ff9bfea6f94688da7bc

Contents?: true

Size: 1.05 KB

Versions: 3

Compression:

Stored size: 1.05 KB

Contents

module Recurly
  module Requests
    class Address < Request

      # @!attribute city
      #   @return [String] City
      define_attribute :city, String

      # @!attribute country
      #   @return [String] Country, 2-letter ISO code.
      define_attribute :country, String

      # @!attribute first_name
      #   @return [String] First name
      define_attribute :first_name, String

      # @!attribute last_name
      #   @return [String] Last name
      define_attribute :last_name, String

      # @!attribute phone
      #   @return [String] Phone number
      define_attribute :phone, String

      # @!attribute postal_code
      #   @return [String] Zip or postal code.
      define_attribute :postal_code, String

      # @!attribute region
      #   @return [String] State or province.
      define_attribute :region, String

      # @!attribute street1
      #   @return [String] Street 1
      define_attribute :street1, String

      # @!attribute street2
      #   @return [String] Street 2
      define_attribute :street2, String
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
recurly-3.0.0.beta.3 lib/recurly/requests/address.rb
recurly-3.0.0.beta.2 lib/recurly/requests/address.rb
recurly-3.0.0.beta.1 lib/recurly/requests/address.rb