Sha256: fb849520a4eeb9df26a381fbbc9d74ba72c994bf0735dc294777a149992a592c

Contents?: true

Size: 456 Bytes

Versions: 21

Compression:

Stored size: 456 Bytes

Contents

module Braintree
  class ConnectedMerchantStatusTransitioned
    include BaseModule

    attr_reader :merchant_public_id
    attr_reader :oauth_application_client_id
    attr_reader :status

    alias_method :merchant_id, :merchant_public_id

    def initialize(attributes)
      set_instance_variables_from_hash(attributes)
    end

    class << self
      protected :new
      def _new(*args) # :nodoc:
        self.new *args
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
braintree-2.89.0 lib/braintree/connected_merchant_status_transitioned.rb