wallee
Version:
TypeScript/JavaScript client for wallee
57 lines (56 loc) • 1.53 kB
TypeScript
import type { Feature } from './Feature';
/**
*
* @export
* @interface WalletType
*/
export interface WalletType {
/**
*
* @type {Feature}
* @memberof WalletType
*/
feature?: Feature;
/**
*
* @type {number}
* @memberof WalletType
*/
readonly sortOrder?: number;
/**
* The localized name of the object.
* @type {{ [key: string]: string; }}
* @memberof WalletType
*/
readonly name?: {
[key: string]: string;
};
/**
* The localized description of the object.
* @type {{ [key: string]: string; }}
* @memberof WalletType
*/
readonly description?: {
[key: string]: string;
};
/**
*
* @type {string}
* @memberof WalletType
*/
readonly navigationPath?: string;
/**
* A unique identifier for the object.
* @type {number}
* @memberof WalletType
*/
readonly id?: number;
}
/**
* Check if a given object implements the WalletType interface.
*/
export declare function instanceOfWalletType(value: object): value is WalletType;
export declare function WalletTypeFromJSON(json: any): WalletType;
export declare function WalletTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletType;
export declare function WalletTypeToJSON(json: any): WalletType;
export declare function WalletTypeToJSONTyped(value?: Omit<WalletType, 'sortOrder' | 'name' | 'description' | 'navigationPath' | 'id'> | null, ignoreDiscriminator?: boolean): any;