pub struct BlogPostResponseDTO {Show 14 fields
pub categories: Vec<String>,
pub tags: Vec<String>,
pub archived: Option<bool>,
pub id: Option<String>,
pub title: Option<String>,
pub description: Option<String>,
pub image_url: Option<String>,
pub status: Option<String>,
pub image_alt_text: Option<String>,
pub url_slug: Option<String>,
pub canonical_link: Option<String>,
pub author: Option<String>,
pub published_at: Option<String>,
pub updated_at: Option<String>,
}blogs only.Expand description
BlogPostResponseDTO from the GoHighLevel OpenAPI spec.
Fields§
§categories: Vec<String>Array of category IDs associated with the blog post Required by the API. (Optional here so responses that omit it still parse.)
Array of tags associated with the blog post
archived: Option<bool>Indicates whether the blog post is archived Required by the API. (Optional here so responses that omit it still parse.)
id: Option<String>Unique identifier of the blog post Required by the API. (Optional here so responses that omit it still parse.)
title: Option<String>Title of the blog post Required by the API. (Optional here so responses that omit it still parse.)
description: Option<String>Description of the blog post Required by the API. (Optional here so responses that omit it still parse.)
image_url: Option<String>URL of the image associated with the blog post Required by the API. (Optional here so responses that omit it still parse.)
status: Option<String>Publication status of the blog post Required by the API. (Optional here so responses that omit it still parse.)
image_alt_text: Option<String>Alternative text for the blog post image Required by the API. (Optional here so responses that omit it still parse.)
url_slug: Option<String>URL slug for the blog post Required by the API. (Optional here so responses that omit it still parse.)
canonical_link: Option<String>Canonical link of the blog post
Identifier of the author of the blog post
published_at: Option<String>Timestamp when the blog post was published Required by the API. (Optional here so responses that omit it still parse.)
updated_at: Option<String>Timestamp when the blog post was last updated Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for BlogPostResponseDTO
impl Clone for BlogPostResponseDTO
Source§fn clone(&self) -> BlogPostResponseDTO
fn clone(&self) -> BlogPostResponseDTO
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more