Class: Io::Flow::V0::Models::WebhookResponse
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::WebhookResponse
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#body_url ⇒ Object
readonly
Returns the value of attribute body_url.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#request ⇒ Object
readonly
Returns the value of attribute request.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ WebhookResponse
constructor
A new instance of WebhookResponse.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ WebhookResponse
Returns a new instance of WebhookResponse.
33657 33658 33659 33660 33661 33662 33663 33664 33665 33666 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33657 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :request, :headers, :body, :status], 'WebhookResponse') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) @request = (x = opts.delete(:request); x.is_a?(::Io::Flow::V0::Models::WebhookRequestReference) ? x : ::Io::Flow::V0::Models::WebhookRequestReference.new(x)) @headers = HttpClient::Preconditions.assert_class('headers', opts.delete(:headers), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::Header) ? x : ::Io::Flow::V0::Models::Header.new(x)) } @body = HttpClient::Preconditions.assert_class('body', opts.delete(:body), String) @body_url = (x = opts.delete(:body_url); x.nil? ? nil : HttpClient::Preconditions.assert_class('body_url', x, String)) @status = HttpClient::Preconditions.assert_class('status', opts.delete(:status), Integer) end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
33655 33656 33657 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33655 def body @body end |
#body_url ⇒ Object (readonly)
Returns the value of attribute body_url.
33655 33656 33657 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33655 def body_url @body_url end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
33655 33656 33657 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33655 def headers @headers end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
33655 33656 33657 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33655 def id @id end |
#request ⇒ Object (readonly)
Returns the value of attribute request.
33655 33656 33657 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33655 def request @request end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
33655 33656 33657 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33655 def status @status end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
33672 33673 33674 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33672 def copy(incoming={}) WebhookResponse.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
33676 33677 33678 33679 33680 33681 33682 33683 33684 33685 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33676 def to_hash { :id => id, :request => request.to_hash, :headers => headers.map { |o| o.to_hash }, :body => body, :body_url => body_url, :status => status } end |
#to_json ⇒ Object
33668 33669 33670 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33668 def to_json JSON.dump(to_hash) end |