Class: LockstepSdk::UriModel

Inherits:
Object
  • Object
show all
Defined in:
lib/lockstep_sdk/models/uri_model.rb

Overview

Represents a Uri for download link

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params = {}) ⇒ UriModel

Initialize the UriModel using the provided prototype



25
26
27
# File 'lib/lockstep_sdk/models/uri_model.rb', line 25

def initialize(params = {})
    @download_link = params.dig(:download_link)
end

Instance Attribute Details

Returns Represents the download link.

Returns:

  • (Uri)

    Represents the download link



31
32
33
# File 'lib/lockstep_sdk/models/uri_model.rb', line 31

def download_link
  @download_link
end

Instance Method Details

#as_json(options = {}) ⇒ object

Returns This object as a JSON key-value structure.

Returns:

  • (object)

    This object as a JSON key-value structure



35
36
37
38
39
# File 'lib/lockstep_sdk/models/uri_model.rb', line 35

def as_json(options={})
    {
        'downloadLink' => @download_link,
    }
end

#to_json(*options) ⇒ String

Returns This object converted to a JSON string.

Returns:

  • (String)

    This object converted to a JSON string



43
44
45
# File 'lib/lockstep_sdk/models/uri_model.rb', line 43

def to_json(*options)
    "[#{as_json(*options).to_json(*options)}]"
end