pub struct GetKnowledgeBaseByIdDataDTO {
pub id: Option<String>,
pub name: Option<String>,
pub name_lower_case: Option<String>,
pub location_id: Option<String>,
pub deleted: Option<bool>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub kb_metadata: Option<KnowledgeBaseMetadataDTO>,
pub is_default: Option<bool>,
}knowledge-base only.Expand description
GetKnowledgeBaseByIdDataDTO from the GoHighLevel OpenAPI spec.
Fields§
§id: Option<String>Knowledge base ID Required by the API. (Optional here so responses that omit it still parse.)
name: Option<String>Knowledge base name Required by the API. (Optional here so responses that omit it still parse.)
name_lower_case: Option<String>Knowledge base name in lowercase Required by the API. (Optional here so responses that omit it still parse.)
location_id: Option<String>Location ID Required by the API. (Optional here so responses that omit it still parse.)
deleted: Option<bool>Whether the knowledge base is deleted Required by the API. (Optional here so responses that omit it still parse.)
created_at: Option<String>Date when knowledge base was created Required by the API. (Optional here so responses that omit it still parse.)
updated_at: Option<String>Date when knowledge base was last updated Required by the API. (Optional here so responses that omit it still parse.)
kb_metadata: Option<KnowledgeBaseMetadataDTO>Knowledge base metadata with content counts Required by the API. (Optional here so responses that omit it still parse.)
is_default: Option<bool>Whether the knowledge base is default or not
Trait Implementations§
Source§impl Clone for GetKnowledgeBaseByIdDataDTO
impl Clone for GetKnowledgeBaseByIdDataDTO
Source§fn clone(&self) -> GetKnowledgeBaseByIdDataDTO
fn clone(&self) -> GetKnowledgeBaseByIdDataDTO
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more