Class: Copyleaks::ExportResults
- Inherits:
-
Object
- Object
- Copyleaks::ExportResults
- Defined in:
- lib/copyleaks/models/exports/export_results.rb
Instance Attribute Summary collapse
-
#endpoint ⇒ Object
readonly
Returns the value of attribute endpoint.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#verb ⇒ Object
readonly
Returns the value of attribute verb.
Instance Method Summary collapse
- #as_json(*_args) ⇒ Object
-
#initialize(id, endpoint, verb, headers = nil) ⇒ ExportResults
constructor
A new instance of ExportResults.
- #to_json(*options) ⇒ Object
Constructor Details
#initialize(id, endpoint, verb, headers = nil) ⇒ ExportResults
Returns a new instance of ExportResults.
32 33 34 35 36 37 38 39 40 41 |
# 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 |
Instance Attribute Details
#endpoint ⇒ Object (readonly)
Returns the value of attribute endpoint.
26 27 28 |
# File 'lib/copyleaks/models/exports/export_results.rb', line 26 def endpoint @endpoint end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
26 27 28 |
# File 'lib/copyleaks/models/exports/export_results.rb', line 26 def headers @headers end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
26 27 28 |
# File 'lib/copyleaks/models/exports/export_results.rb', line 26 def id @id end |
#verb ⇒ Object (readonly)
Returns the value of attribute verb.
26 27 28 |
# File 'lib/copyleaks/models/exports/export_results.rb', line 26 def verb @verb end |
Instance Method Details
#as_json(*_args) ⇒ Object
43 44 45 46 47 48 49 50 |
# 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) ⇒ Object
52 53 54 |
# File 'lib/copyleaks/models/exports/export_results.rb', line 52 def to_json(*) as_json(*).to_json(*) end |