/** * Klaviyo API * The Klaviyo REST API. Please visit https://developers.klaviyo.com for more details. * * Contact: developers@klaviyo.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ export declare class DynamicReviewBlockProperties { 'showRating'?: boolean | null; 'showReviewerName'?: boolean | null; 'showProductName'?: boolean | null; 'showVariantName'?: boolean | null; 'showVerifiedBadge'?: boolean | null; 'authorPlaceholder'?: string | null; 'quotePlaceholder'?: string | null; 'productNamePlaceholder'?: string | null; 'productVariantNamePlaceholder'?: string | null; /** * Review block verified badge language. */ 'verifiedBadgeLanguage'?: DynamicReviewBlockProperties.VerifiedBadgeLanguageEnum | 'dutch' | 'english' | 'french' | 'german' | 'hungarian' | 'italian' | 'japanese' | 'korean' | 'portuguese' | 'spanish' | null; 'dynamic': boolean; /** * Review block fallback options for dynamic selection. */ 'fallbackOptions'?: DynamicReviewBlockProperties.FallbackOptionsEnum | 'high-quality-review' | 'high-quality-review-or-static' | 'no-review' | 'recent' | 'static-only' | null; /** * Review block fallback content type. */ 'fallbackContentType'?: DynamicReviewBlockProperties.FallbackContentTypeEnum | 'full' | 'quote' | null; 'fallbackReviewId'?: string | null; /** * Review block product selection mode. */ 'productSelectionMode'?: DynamicReviewBlockProperties.ProductSelectionModeEnum | 'automatic' | 'manual' | null; 'productId'?: string | null; 'productEventVariable'?: string | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace DynamicReviewBlockProperties { enum VerifiedBadgeLanguageEnum { Dutch, English, French, German, Hungarian, Italian, Japanese, Korean, Portuguese, Spanish } enum FallbackOptionsEnum { HighQualityReview, HighQualityReviewOrStatic, NoReview, Recent, StaticOnly } enum FallbackContentTypeEnum { Full, Quote } enum ProductSelectionModeEnum { Automatic, Manual } }