Sha256: 386264ec7c56f2da8651b35f8f08768480912634dea819d2db00a62ada1d35fc

Contents?: true

Size: 613 Bytes

Versions: 12

Compression:

Stored size: 613 Bytes

Contents

# frozen_string_literal: true

# Servers send responses to inform clients of the results of operations. Because the
# result of some requests might not have any data, the Response element can optionally
# contain nothing but a Status element. A Response element can also contain any
# application-level data. During PunchOut for example, the application-level data is
# contained in a PunchOutSetupResponse element.

module CXML
  class Response < DocumentNode
    accessible_attributes %i[
      deployment_mode
      id
    ]
    accessible_nodes %i[
      status
      punch_out_setup_response
    ]
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
cxml-ruby-0.8.2 lib/cxml/response.rb
cxml-ruby-0.8.1 lib/cxml/response.rb
cxml-ruby-0.8.0 lib/cxml/response.rb
cxml-ruby-0.7.0 lib/cxml/response.rb
cxml-ruby-0.6.1 lib/cxml/response.rb
cxml-ruby-0.6.0 lib/cxml/response.rb
cxml-ruby-0.5.0 lib/cxml/response.rb
cxml-ruby-0.4.1 lib/cxml/response.rb
cxml-ruby-0.4.0 lib/cxml/response.rb
cxml-ruby-0.3.0 lib/cxml/response.rb
cxml-ruby-0.2.1 lib/cxml/response.rb
cxml-ruby-0.2.0 lib/cxml/response.rb