pub struct DiscoverWebsiteDataDTO {
pub operation_id: Option<String>,
pub status: Option<String>,
pub url: Option<String>,
}Available on crate feature
knowledge-base only.Expand description
DiscoverWebsiteDataDTO from the GoHighLevel OpenAPI spec.
Fields§
§operation_id: Option<String>Operation ID for tracking the discovery process Required by the API. (Optional here so responses that omit it still parse.)
status: Option<String>Current status of the website discovery operation
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>The URL being discovered/crawled Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for DiscoverWebsiteDataDTO
impl Clone for DiscoverWebsiteDataDTO
Source§fn clone(&self) -> DiscoverWebsiteDataDTO
fn clone(&self) -> DiscoverWebsiteDataDTO
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DiscoverWebsiteDataDTO
impl Debug for DiscoverWebsiteDataDTO
Source§impl Default for DiscoverWebsiteDataDTO
impl Default for DiscoverWebsiteDataDTO
Source§fn default() -> DiscoverWebsiteDataDTO
fn default() -> DiscoverWebsiteDataDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DiscoverWebsiteDataDTO
impl<'de> Deserialize<'de> for DiscoverWebsiteDataDTO
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DiscoverWebsiteDataDTO
impl RefUnwindSafe for DiscoverWebsiteDataDTO
impl Send for DiscoverWebsiteDataDTO
impl Sync for DiscoverWebsiteDataDTO
impl Unpin for DiscoverWebsiteDataDTO
impl UnsafeUnpin for DiscoverWebsiteDataDTO
impl UnwindSafe for DiscoverWebsiteDataDTO
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more