lib/recurly/resources/payment_method.rb in recurly-3.2.2 vs lib/recurly/resources/payment_method.rb in recurly-3.3.0

- old
+ new

@@ -28,12 +28,24 @@ # @!attribute first_six # @return [String] Credit card number's first six digits. define_attribute :first_six, String + # @!attribute gateway_code + # @return [String] An identifier for a specific payment gateway. + define_attribute :gateway_code, String + + # @!attribute gateway_token + # @return [String] A token used in place of a credit card in order to perform transactions. + define_attribute :gateway_token, String + # @!attribute last_four # @return [String] Credit card number's last four digits. Will refer to bank account if payment method is ACH. define_attribute :last_four, String + + # @!attribute last_two + # @return [String] The IBAN bank account's last two digits. + define_attribute :last_two, String # @!attribute object # @return [String] define_attribute :object, String