/**
 * Generated by orval v8.23.0 🍺
 * Do not edit manually.
 * Api
 * API operativa de Y.E. Transport & Constructors
 * OpenAPI spec version: 1.0.0
 */
import type { PublicEntryInputGalleryItem } from './publicEntryInputGalleryItem';
import type { PublicEntryInputKind } from './publicEntryInputKind';
import type { PublicEntryInputStatus } from './publicEntryInputStatus';

export interface PublicEntryInput {
  kind: PublicEntryInputKind;
  /** @minLength 1 */
  slug: string;
  /** @minLength 1 */
  category: string;
  status?: PublicEntryInputStatus;
  /** @minLength 1 */
  titleEs: string;
  /** @minLength 1 */
  titleEn: string;
  summaryEs?: string;
  summaryEn?: string;
  bodyEs?: string;
  bodyEn?: string;
  imageUrl?: string;
  imageAltEs?: string;
  imageAltEn?: string;
  gallery?: PublicEntryInputGalleryItem[];
  seoTitleEs?: string;
  seoTitleEn?: string;
  seoDescriptionEs?: string;
  seoDescriptionEn?: string;
  published?: boolean;
  featured?: boolean;
  sortOrder?: number;
}
