pub struct OperationDetailsDTO {
pub discovered_urls_count: Option<f64>,
pub trained_urls_count: Option<f64>,
pub id: Option<String>,
pub location_id: Option<String>,
pub status: Option<String>,
pub url: Option<String>,
pub mode: Option<String>,
pub knowledge_base_id: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub v: Option<f64>,
pub robots_file_data: Option<String>,
}knowledge-base only.Expand description
OperationDetailsDTO from the GoHighLevel OpenAPI spec.
Fields§
§discovered_urls_count: Option<f64>Number of URLs discovered Required by the API. (Optional here so responses that omit it still parse.)
trained_urls_count: Option<f64>Number of URLs successfully trained Required by the API. (Optional here so responses that omit it still parse.)
id: Option<String>Operation unique identifier Required by the API. (Optional here so responses that omit it still parse.)
location_id: Option<String>Associated location ID Required by the API. (Optional here so responses that omit it still parse.)
status: Option<String>Current operation status
Allowed values: Pending, Processing, Successful, Failed, Existing,
Restricted, Cancelled, Aborted, Training.
Required by the API.
(Optional here so responses that omit it still parse.)
url: Option<String>Base URL being crawled Required by the API. (Optional here so responses that omit it still parse.)
mode: Option<String>Crawling mode used
Allowed values: Exact, Path, Domain.
Required by the API.
(Optional here so responses that omit it still parse.)
knowledge_base_id: Option<String>Knowledge base ID Required by the API. (Optional here so responses that omit it still parse.)
created_at: Option<String>Operation creation timestamp Required by the API. (Optional here so responses that omit it still parse.)
updated_at: Option<String>Last update timestamp Required by the API. (Optional here so responses that omit it still parse.)
v: Option<f64>Version field Required by the API. (Optional here so responses that omit it still parse.)
robots_file_data: Option<String>Robots.txt file content
Trait Implementations§
Source§impl Clone for OperationDetailsDTO
impl Clone for OperationDetailsDTO
Source§fn clone(&self) -> OperationDetailsDTO
fn clone(&self) -> OperationDetailsDTO
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more