diff --git a/lib/eway_rapid/entities/create_access_code_shared_request.rb b/lib/eway_rapid/entities/create_access_code_shared_request.rb index 536ab96..6cf8131 100644 --- a/lib/eway_rapid/entities/create_access_code_shared_request.rb +++ b/lib/eway_rapid/entities/create_access_code_shared_request.rb @@ -2,7 +2,6 @@ module EwayRapid class CreateAccessCodeSharedRequest attr_accessor :customer attr_accessor :shipping_address - attr_accessor :shipping_method attr_accessor :items attr_accessor :options attr_accessor :payment @@ -27,7 +26,6 @@ def to_json(opts={}) { Constants::CUSTOMER => InternalModels::Customer.to_hash(customer), Constants::SHIPPING_ADDRESS => InternalModels::ShippingAddress.to_hash(shipping_address), - Constants::SHIPPING_METHOD => shipping_method, Constants::ITEMS => Models::LineItem.to_array(items), Constants::OPTIONS => InternalModels::Option.to_array(options), Constants::PAYMENT => InternalModels::Payment.to_hash(payment),