pub struct FaqResponseDTO {
pub id: Option<String>,
pub question: Option<String>,
pub question_lower_case: Option<String>,
pub answer: Option<String>,
pub knowledge_base_id: Option<String>,
pub location_id: Option<String>,
pub trained_url_id: Option<String>,
pub deleted: Option<bool>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}knowledge-base only.Expand description
FaqResponseDTO from the GoHighLevel OpenAPI spec.
Fields§
§id: Option<String>FAQ ID as string Required by the API. (Optional here so responses that omit it still parse.)
question: Option<String>FAQ question Required by the API. (Optional here so responses that omit it still parse.)
question_lower_case: Option<String>FAQ question in lowercase Required by the API. (Optional here so responses that omit it still parse.)
answer: Option<String>FAQ answer 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.)
location_id: Option<String>Location ID Required by the API. (Optional here so responses that omit it still parse.)
trained_url_id: Option<String>Trained URL ID Required by the API. (Optional here so responses that omit it still parse.)
deleted: Option<bool>Whether the FAQ is deleted Required by the API. (Optional here so responses that omit it still parse.)
created_at: Option<String>Date when FAQ was created Required by the API. (Optional here so responses that omit it still parse.)
updated_at: Option<String>Date when FAQ was last updated Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for FaqResponseDTO
impl Clone for FaqResponseDTO
Source§fn clone(&self) -> FaqResponseDTO
fn clone(&self) -> FaqResponseDTO
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more