/** * 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. */ import { RequestFile } from './models'; export class ReviewProperties { 'displayDevice'?: Array | Array<'both' | 'desktop' | 'mobile'>; 'classname'?: string | null; 'author'?: string | null; 'content'?: string | null; 'rating'?: number = 5; 'verified'?: boolean = false; 'reviewId'?: number | null; 'showRating'?: boolean = true; 'showAuthor'?: boolean = true; 'showVerified'?: boolean = true; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "displayDevice", "baseName": "display_device", "type": "Array" }, { "name": "classname", "baseName": "classname", "type": "string" }, { "name": "author", "baseName": "author", "type": "string" }, { "name": "content", "baseName": "content", "type": "string" }, { "name": "rating", "baseName": "rating", "type": "number" }, { "name": "verified", "baseName": "verified", "type": "boolean" }, { "name": "reviewId", "baseName": "review_id", "type": "number" }, { "name": "showRating", "baseName": "show_rating", "type": "boolean" }, { "name": "showAuthor", "baseName": "show_author", "type": "boolean" }, { "name": "showVerified", "baseName": "show_verified", "type": "boolean" } ]; static getAttributeTypeMap() { return ReviewProperties.attributeTypeMap; } } export namespace ReviewProperties { export enum DisplayDeviceEnum { Both = 'both', Desktop = 'desktop', Mobile = 'mobile' } }