pub struct GetKnowledgeBaseByIdDataDTO {
pub id: String,
pub name: String,
pub name_lower_case: String,
pub location_id: String,
pub deleted: bool,
pub created_at: String,
pub updated_at: String,
pub kb_metadata: KnowledgeBaseMetadataDTO,
pub is_default: Option<bool>,
}Available on crate feature
knowledge-base only.Expand description
GetKnowledgeBaseByIdDataDTO from the GoHighLevel OpenAPI spec.
Fields§
§id: StringKnowledge base ID Required by the API.
name: StringKnowledge base name Required by the API.
name_lower_case: StringKnowledge base name in lowercase Required by the API.
location_id: StringLocation ID Required by the API.
deleted: boolWhether the knowledge base is deleted Required by the API.
created_at: StringDate when knowledge base was created Required by the API.
updated_at: StringDate when knowledge base was last updated Required by the API.
kb_metadata: KnowledgeBaseMetadataDTOKnowledge base metadata with content counts Required by the API.
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
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 GetKnowledgeBaseByIdDataDTO
impl Debug for GetKnowledgeBaseByIdDataDTO
Source§impl Default for GetKnowledgeBaseByIdDataDTO
impl Default for GetKnowledgeBaseByIdDataDTO
Source§fn default() -> GetKnowledgeBaseByIdDataDTO
fn default() -> GetKnowledgeBaseByIdDataDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetKnowledgeBaseByIdDataDTO
impl<'de> Deserialize<'de> for GetKnowledgeBaseByIdDataDTO
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 GetKnowledgeBaseByIdDataDTO
impl RefUnwindSafe for GetKnowledgeBaseByIdDataDTO
impl Send for GetKnowledgeBaseByIdDataDTO
impl Sync for GetKnowledgeBaseByIdDataDTO
impl Unpin for GetKnowledgeBaseByIdDataDTO
impl UnsafeUnpin for GetKnowledgeBaseByIdDataDTO
impl UnwindSafe for GetKnowledgeBaseByIdDataDTO
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