CmsBlogPostResponse
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | Long | Unique identifier for the blog post. | [default to null] |
| title | String | Title of the blog post. | [default to null] |
| slug | String | URL-friendly slug for the blog post. | [default to null] |
| content | String | Full content/body of the blog post. | [default to null] |
| excerpt | String | Optional excerpt or summary of the blog post. | [optional] [default to null] |
| category_id | Long | Optional category ID this post belongs to. | [optional] [default to null] |
| author_id | Long | Optional author user ID. | [optional] [default to null] |
| locale | String | Language/locale code (e.g., “en”, “tr”). | [default to null] |
| featured_image_url | String | Optional URL to the featured image. | [optional] [default to null] |
| published_at | Date | Optional publication timestamp. | [optional] [default to null] |
| status | CmsPublicationStatus | Publication status (e.g., Draft, Published, Archived). | [default to null] |
| seo_data | any | Optional SEO metadata as JSON. | [optional] [default to null] |
| created_at | Date | Timestamp when the post was created. | [default to null] |
| updated_at | Date | Timestamp when the post was last updated. | [default to null] |