Class: ContextDev::Models::WebWebScrapeSitemapResponse
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- ContextDev::Models::WebWebScrapeSitemapResponse
- Defined in:
- lib/context_dev/models/web_web_scrape_sitemap_response.rb
Overview
Defined Under Namespace
Modules: Success Classes: Meta
Instance Attribute Summary collapse
-
#domain ⇒ String
The normalized domain that was crawled.
-
#meta ⇒ ContextDev::Models::WebWebScrapeSitemapResponse::Meta
Metadata about the sitemap crawl operation.
-
#success ⇒ Boolean, ContextDev::Models::WebWebScrapeSitemapResponse::Success
Indicates success.
-
#urls ⇒ Array<String>
Array of discovered page URLs from the sitemap (max 500).
Instance Method Summary collapse
-
#initialize(errors:, sitemaps_discovered:, sitemaps_fetched:, sitemaps_skipped:) ⇒ Object
constructor
Metadata about the sitemap crawl operation.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(errors:, sitemaps_discovered:, sitemaps_fetched:, sitemaps_skipped:) ⇒ Object
Metadata about the sitemap crawl operation
|
|
# File 'lib/context_dev/models/web_web_scrape_sitemap_response.rb', line 31
|
Instance Attribute Details
#domain ⇒ String
The normalized domain that was crawled
11 |
# File 'lib/context_dev/models/web_web_scrape_sitemap_response.rb', line 11 required :domain, String |
#meta ⇒ ContextDev::Models::WebWebScrapeSitemapResponse::Meta
Metadata about the sitemap crawl operation
17 |
# File 'lib/context_dev/models/web_web_scrape_sitemap_response.rb', line 17 required :meta, -> { ContextDev::Models::WebWebScrapeSitemapResponse::Meta } |
#success ⇒ Boolean, ContextDev::Models::WebWebScrapeSitemapResponse::Success
Indicates success
23 |
# File 'lib/context_dev/models/web_web_scrape_sitemap_response.rb', line 23 required :success, enum: -> { ContextDev::Models::WebWebScrapeSitemapResponse::Success } |
#urls ⇒ Array<String>
Array of discovered page URLs from the sitemap (max 500)
29 |
# File 'lib/context_dev/models/web_web_scrape_sitemap_response.rb', line 29 required :urls, ContextDev::Internal::Type::ArrayOf[String] |