Sha256: 3d7a2a304a5daed989b159b0d9ae613d572b577b1bdc72c60657cd463e9638f5

Contents?: true

Size: 1.38 KB

Versions: 3

Compression:

Stored size: 1.38 KB

Contents

module Recurly
  module Requests
    class ShippingAddressCreate < Request

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

      # @!attribute company
      #   @return [String]
      define_attribute :company, String

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

      # @!attribute email
      #   @return [String]
      define_attribute :email, String

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

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

      # @!attribute nickname
      #   @return [String]
      define_attribute :nickname, String

      # @!attribute phone
      #   @return [String]
      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]
      define_attribute :street1, String

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

      # @!attribute vat_number
      #   @return [String]
      define_attribute :vat_number, 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/shipping_address_create.rb
recurly-3.0.0.beta.2 lib/recurly/requests/shipping_address_create.rb
recurly-3.0.0.beta.1 lib/recurly/requests/shipping_address_create.rb