/**
 * Generated by orval v8.9.1 🍺
 * Do not edit manually.
 * Api
 * BookWithNesto shortlet apartment platform API
 * OpenAPI spec version: 0.1.0
 */

export interface BlogPost {
  id: number;
  title: string;
  slug: string;
  /** @nullable */
  excerpt?: string | null;
  content?: string;
  /** @nullable */
  featuredImage?: string | null;
  /** @nullable */
  category?: string | null;
  /** @nullable */
  tags?: string | null;
  status: string;
  /** @nullable */
  metaTitle?: string | null;
  /** @nullable */
  metaDescription?: string | null;
  authorName?: string;
  createdAt: string;
  updatedAt?: string;
}
