Sha256: 68682a1b7c06e543b77cfaceee4efbfc2a35a8d58e5f47d977c4d30d97f83b9f
Contents?: true
Size: 862 Bytes
Versions: 26
Compression:
Stored size: 862 Bytes
Contents
module Mihari module Structs module Urlscan class Page < Dry::Struct attr_reader domain: String? attr_reader ip: String? attr_reader url: String def self.from_dynamic!: (Hash[(String | Symbol), untyped] d) -> Mihari::Structs::Urlscan::Page end class Result < Dry::Struct attr_reader page: Mihari::Structs::Urlscan::Page attr_reader id: String attr_reader sort: Array[Integer | String] def self.from_dynamic!: (Hash[(String | Symbol), untyped] d) -> Mihari::Structs::Urlscan::Result end class Response < Dry::Struct attr_reader results: Array[Mihari::Structs::Urlscan::Result] attr_reader has_more: Boolean def self.from_dynamic!: (Hash[(String | Symbol), untyped] d) -> Mihari::Structs::Urlscan::Response end end end end
Version data entries
26 entries across 26 versions & 1 rubygems