export type product_CreateProductInput = { /** * Description is an optional product description. */ description?: string; /** * ImageUrls are URLs of product images. */ imageUrls?: Array; /** * Name is the product's display name. */ name: string; /** * Status is the product lifecycle state. */ status?: product_CreateProductInput.status; }; export declare namespace product_CreateProductInput { /** * Status is the product lifecycle state. */ enum status { ACTIVE = "active", ARCHIVED = "archived" } }