Class: NgrokAPI::Models::AbuseReport

Inherits:
Object
  • Object
show all
Defined in:
lib/ngrokapi/models/abuse_report.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client: nil, attrs: {}) ⇒ AbuseReport

Returns a new instance of AbuseReport.



20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/ngrokapi/models/abuse_report.rb', line 20

def initialize(client: nil, attrs: {})
  @client = client
  @attrs = attrs
  @id = @attrs['id']
  unless @attrs['uri'].nil?
    @uri = URI(@attrs['uri'])
  end
  @created_at = @attrs['created_at']
  @urls = @attrs['urls']
  @metadata = @attrs['metadata']
  @status = @attrs['status']
  @hostnames = @attrs['hostnames']
end

Instance Attribute Details

#attrsObject (readonly)

Returns the value of attribute attrs.



10
11
12
# File 'lib/ngrokapi/models/abuse_report.rb', line 10

def attrs
  @attrs
end

#clientObject (readonly)

Returns the value of attribute client.



10
11
12
# File 'lib/ngrokapi/models/abuse_report.rb', line 10

def client
  @client
end

#created_atObject (readonly)

Returns the value of attribute created_at.



10
11
12
# File 'lib/ngrokapi/models/abuse_report.rb', line 10

def created_at
  @created_at
end

#hostnamesObject (readonly)

Returns the value of attribute hostnames.



10
11
12
# File 'lib/ngrokapi/models/abuse_report.rb', line 10

def hostnames
  @hostnames
end

#idObject (readonly)

Returns the value of attribute id.



10
11
12
# File 'lib/ngrokapi/models/abuse_report.rb', line 10

def id
  @id
end

#metadataObject (readonly)

Returns the value of attribute metadata.



10
11
12
# File 'lib/ngrokapi/models/abuse_report.rb', line 10

def 
  @metadata
end

#statusObject (readonly)

Returns the value of attribute status.



10
11
12
# File 'lib/ngrokapi/models/abuse_report.rb', line 10

def status
  @status
end

#uriObject (readonly)

Returns the value of attribute uri.



10
11
12
# File 'lib/ngrokapi/models/abuse_report.rb', line 10

def uri
  @uri
end

#urlsObject (readonly)

Returns the value of attribute urls.



10
11
12
# File 'lib/ngrokapi/models/abuse_report.rb', line 10

def urls
  @urls
end

Instance Method Details

#==(other) ⇒ Object



34
35
36
# File 'lib/ngrokapi/models/abuse_report.rb', line 34

def ==(other)
  @attrs == other.attrs
end

#to_hObject



42
43
44
# File 'lib/ngrokapi/models/abuse_report.rb', line 42

def to_h
  @attrs.to_h
end

#to_sObject



38
39
40
# File 'lib/ngrokapi/models/abuse_report.rb', line 38

def to_s
  @attrs.to_s
end