class Thanos::Url

Attributes

type[R]
url[R]

Public Class Methods

new(data) click to toggle source
# File lib/thanos/resources/url.rb, line 5
def initialize(data)
  @type = data['type']
  @url = data['url']
end