/** * wallet-api * API * * The version of the OpenAPI document: 2.1.600 * Contact: development@wallet.inc * * 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'; import { Plan } from './plan'; export class Product { 'id': string; 'title': string; 'titleFull': string; 'category': string; 'iconName': string; 'description': string; 'plans': Array; 'isHourly'?: boolean; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "id", "baseName": "id", "type": "string" }, { "name": "title", "baseName": "title", "type": "string" }, { "name": "titleFull", "baseName": "titleFull", "type": "string" }, { "name": "category", "baseName": "category", "type": "string" }, { "name": "iconName", "baseName": "iconName", "type": "string" }, { "name": "description", "baseName": "description", "type": "string" }, { "name": "plans", "baseName": "plans", "type": "Array" }, { "name": "isHourly", "baseName": "isHourly", "type": "boolean" } ]; static getAttributeTypeMap() { return Product.attributeTypeMap; } }