Class: Io::Flow::V0::Models::WebhookResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ WebhookResponse

Returns a new instance of WebhookResponse.



34947
34948
34949
34950
34951
34952
34953
34954
34955
34956
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34947

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

#bodyObject (readonly)

Returns the value of attribute body.



34945
34946
34947
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34945

def body
  @body
end

#body_urlObject (readonly)

Returns the value of attribute body_url.



34945
34946
34947
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34945

def body_url
  @body_url
end

#headersObject (readonly)

Returns the value of attribute headers.



34945
34946
34947
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34945

def headers
  @headers
end

#idObject (readonly)

Returns the value of attribute id.



34945
34946
34947
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34945

def id
  @id
end

#requestObject (readonly)

Returns the value of attribute request.



34945
34946
34947
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34945

def request
  @request
end

#statusObject (readonly)

Returns the value of attribute status.



34945
34946
34947
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34945

def status
  @status
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



34962
34963
34964
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34962

def copy(incoming={})
  WebhookResponse.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



34966
34967
34968
34969
34970
34971
34972
34973
34974
34975
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34966

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_jsonObject



34958
34959
34960
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34958

def to_json
  JSON.dump(to_hash)
end