class Copyleaks::ExportResults
Attributes
endpoint[R]
headers[R]
id[R]
verb[R]
Public Class Methods
new(id, endpoint, verb, headers = nil)
click to toggle source
@param [String] id Result identification to be downloaded. You get these identifications from the completed webhook. api.copyleaks.com/documentation/v3/webhooks/completed @param [String] endpoint The HTTP url to upload the data. @param [String] verb The HTTP verb (also called “HTTP Methods”) to upload the data to your specified endpoint. @param [string[]] headers List of headers to be submitted with the upload request. You may use this field to provide additional request headers, such as “Authorization” header. Example: [[“header-key1”, “header-value1”], [“header-key2”, “header-value2”]]
# File lib/copyleaks/models/exports/export_results.rb, line 32 def initialize(id, endpoint, verb, headers = nil) raise 'Copyleaks::ExportResults - id - id must be of type String' unless id.instance_of?(String) raise 'Copyleaks::ExportResults - endpoint - endpoint must be of type String' unless endpoint.instance_of?(String) raise 'Copyleaks::ExportResults - verb - verb must be of type String' unless verb.instance_of?(String) @id = id @endpoint = endpoint @verb = verb @headers = headers end
Public Instance Methods
as_json(*_args)
click to toggle source
# File lib/copyleaks/models/exports/export_results.rb, line 43 def as_json(*_args) { id: @id, endpoint: @endpoint, verb: @verb, headers: @headers }.select { |_k, v| !v.nil? } end
to_json(*options)
click to toggle source
# File lib/copyleaks/models/exports/export_results.rb, line 52 def to_json(*options) as_json(*options).to_json(*options) end