Sha256: b6a94938d31421df8f8494c9f9eccc5813379e080795faff24ecdc69b2c35c1a
Contents?: true
Size: 1.43 KB
Versions: 94
Compression:
Stored size: 1.43 KB
Contents
# This file is automatically created by Recurly's OpenAPI generation process # and thus any edits you make by hand will be lost. If you wish to make a # change to this file, please create a Github issue explaining the changes you # need and we will usher them to the appropriate places. module Recurly module Requests class SubscriptionShippingCreate < Request # @!attribute address # @return [ShippingAddressCreate] define_attribute :address, :ShippingAddressCreate # @!attribute address_id # @return [String] Assign a shipping address from the account's existing shipping addresses. If `address_id` and `address` are both present, `address` will be used. define_attribute :address_id, String # @!attribute amount # @return [Float] Assigns the subscription's shipping cost. If this is greater than zero then a `method_id` or `method_code` is required. define_attribute :amount, Float # @!attribute method_code # @return [String] The code of the shipping method used to deliver the subscription. If `method_id` and `method_code` are both present, `method_id` will be used. define_attribute :method_code, String # @!attribute method_id # @return [String] The id of the shipping method used to deliver the subscription. If `method_id` and `method_code` are both present, `method_id` will be used. define_attribute :method_id, String end end end
Version data entries
94 entries across 94 versions & 1 rubygems