UNPKG

wallee

Version:
36 lines (35 loc) 729 B
import { Feature } from "./Feature"; declare class TokenVersionType { /** * The localized description of the object. */ 'description'?: { [key: string]: string; }; /** * */ 'feature'?: Feature; /** * A unique identifier for the object. */ 'id'?: number; /** * The localized name of the object. */ 'name'?: { [key: string]: string; }; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { TokenVersionType };