pub struct CrawledUrlDTO {
pub id: Option<String>,
pub url: Option<String>,
pub title: Option<String>,
pub status: Option<String>,
pub location_id: Option<String>,
pub knowledge_base_id: Option<String>,
pub content: Option<String>,
pub content_edited_by_user: Option<bool>,
pub updated_at: Option<String>,
}knowledge-base only.Expand description
CrawledUrlDTO from the GoHighLevel OpenAPI spec.
Fields§
§id: Option<String>Unique identifier for the URL Required by the API. (Optional here so responses that omit it still parse.)
url: Option<String>The actual URL that was crawled Required by the API. (Optional here so responses that omit it still parse.)
title: Option<String>Title of the webpage Required by the API. (Optional here so responses that omit it still parse.)
status: Option<String>Current processing status of the URL
Allowed values: Pending, Processing, Successful, Failed, Existing,
Restricted, Cancelled, Aborted, Training.
Required by the API.
(Optional here so responses that omit it still parse.)
location_id: Option<String>Location ID associated with this URL Required by the API. (Optional here so responses that omit it still parse.)
knowledge_base_id: Option<String>Knowledge base ID this URL belongs to Required by the API. (Optional here so responses that omit it still parse.)
content: Option<String>URL to the stored content file Required by the API. (Optional here so responses that omit it still parse.)
content_edited_by_user: Option<bool>Whether the content was edited by user Required by the API. (Optional here so responses that omit it still parse.)
updated_at: Option<String>Last updated timestamp Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for CrawledUrlDTO
impl Clone for CrawledUrlDTO
Source§fn clone(&self) -> CrawledUrlDTO
fn clone(&self) -> CrawledUrlDTO
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more