pub struct BlogPostResponseDTO {Show 14 fields
pub categories: Vec<String>,
pub tags: Vec<String>,
pub archived: bool,
pub id: String,
pub title: String,
pub description: String,
pub image_url: String,
pub status: String,
pub image_alt_text: String,
pub url_slug: String,
pub canonical_link: Option<String>,
pub author: Option<String>,
pub published_at: String,
pub updated_at: 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.
Array of tags associated with the blog post
archived: boolIndicates whether the blog post is archived Required by the API.
id: StringUnique identifier of the blog post Required by the API.
title: StringTitle of the blog post Required by the API.
description: StringDescription of the blog post Required by the API.
image_url: StringURL of the image associated with the blog post Required by the API.
status: StringPublication status of the blog post Required by the API.
image_alt_text: StringAlternative text for the blog post image Required by the API.
url_slug: StringURL slug for the blog post Required by the API.
canonical_link: Option<String>Canonical link of the blog post
Identifier of the author of the blog post
published_at: StringTimestamp when the blog post was published Required by the API.
updated_at: StringTimestamp when the blog post was last updated Required by the API.
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