wallee
Version:
TypeScript/JavaScript client for wallee
45 lines (44 loc) • 1.38 kB
TypeScript
import type { Feature } from './Feature';
/**
*
* @export
* @interface TokenVersionType
*/
export interface TokenVersionType {
/**
*
* @type {Feature}
* @memberof TokenVersionType
*/
feature?: Feature;
/**
* The localized name of the object.
* @type {{ [key: string]: string; }}
* @memberof TokenVersionType
*/
readonly name?: {
[key: string]: string;
};
/**
* The localized description of the object.
* @type {{ [key: string]: string; }}
* @memberof TokenVersionType
*/
readonly description?: {
[key: string]: string;
};
/**
* A unique identifier for the object.
* @type {number}
* @memberof TokenVersionType
*/
readonly id?: number;
}
/**
* Check if a given object implements the TokenVersionType interface.
*/
export declare function instanceOfTokenVersionType(value: object): value is TokenVersionType;
export declare function TokenVersionTypeFromJSON(json: any): TokenVersionType;
export declare function TokenVersionTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenVersionType;
export declare function TokenVersionTypeToJSON(json: any): TokenVersionType;
export declare function TokenVersionTypeToJSONTyped(value?: Omit<TokenVersionType, 'name' | 'description' | 'id'> | null, ignoreDiscriminator?: boolean): any;