Class: Recurly::Requests::ShippingPurchase
- Inherits:
-
Recurly::Request
- Object
- Recurly::Request
- Recurly::Requests::ShippingPurchase
- Defined in:
- lib/recurly/requests/shipping_purchase.rb
Instance Attribute Summary collapse
- #address ⇒ ShippingAddressCreate
-
#address_id ⇒ String
Assign a shipping address from the account's existing shipping addresses.
-
#fees ⇒ Array[ShippingFeeCreate]
A list of shipping fees to be created as charges with the purchase.
Attributes inherited from Recurly::Request
Method Summary
Methods inherited from Recurly::Request
Methods included from Schema::SchemaFactory
Methods included from Schema::RequestCaster
Methods included from Schema::ResourceCaster
Methods included from Schema::SchemaValidator
#get_did_you_mean, #validate!, #validate_attribute!
Instance Attribute Details
#address ⇒ ShippingAddressCreate
11 |
# File 'lib/recurly/requests/shipping_purchase.rb', line 11 define_attribute :address, :ShippingAddressCreate |
#address_id ⇒ String
Returns Assign a shipping address from the account's existing shipping addresses. If this and `address` are both present, `address` will take precedence.
15 |
# File 'lib/recurly/requests/shipping_purchase.rb', line 15 define_attribute :address_id, String |
#fees ⇒ Array[ShippingFeeCreate]
Returns A list of shipping fees to be created as charges with the purchase.
19 |
# File 'lib/recurly/requests/shipping_purchase.rb', line 19 define_attribute :fees, Array, { :item_type => :ShippingFeeCreate } |