/** * 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'; export class Webpage { 'id': string; 'createdAt': Date; 'updatedAt': Date; 'category': string; 'adminPage': string; 'displayName': string; 'systemName': string; 'isPublic': boolean; 'orderNumber': number; 'icons': Array; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "id", "baseName": "id", "type": "string" }, { "name": "createdAt", "baseName": "createdAt", "type": "Date" }, { "name": "updatedAt", "baseName": "updatedAt", "type": "Date" }, { "name": "category", "baseName": "category", "type": "string" }, { "name": "adminPage", "baseName": "adminPage", "type": "string" }, { "name": "displayName", "baseName": "displayName", "type": "string" }, { "name": "systemName", "baseName": "systemName", "type": "string" }, { "name": "isPublic", "baseName": "isPublic", "type": "boolean" }, { "name": "orderNumber", "baseName": "orderNumber", "type": "number" }, { "name": "icons", "baseName": "icons", "type": "Array" } ]; static getAttributeTypeMap() { return Webpage.attributeTypeMap; } }