/** * 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 { PortalPage } from './portalPage'; import { SubscriptionFeature } from './subscriptionFeature'; export class SubscriptionProduct { 'id': string; 'title': string; 'titleFull': string; 'category': string; 'volume'?: number; 'features': Array; 'pages': Array; 'iconName': string; 'description': string; 'isHourly'?: boolean; 'releaseStatus'?: string; 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": "volume", "baseName": "volume", "type": "number" }, { "name": "features", "baseName": "features", "type": "Array" }, { "name": "pages", "baseName": "pages", "type": "Array" }, { "name": "iconName", "baseName": "iconName", "type": "string" }, { "name": "description", "baseName": "description", "type": "string" }, { "name": "isHourly", "baseName": "isHourly", "type": "boolean" }, { "name": "releaseStatus", "baseName": "releaseStatus", "type": "string" } ]; static getAttributeTypeMap() { return SubscriptionProduct.attributeTypeMap; } }