mirror of
https://github.com/djhackersdev/minime.git
synced 2026-07-10 14:27:25 -05:00
No cleaner development history than this exists. It's difficult to methodically design something when you don't yet know what it is you're designing.
34 lines
640 B
TypeScript
34 lines
640 B
TypeScript
export interface UpsertClientSettingRequest {
|
|
clientSetting: {
|
|
/* Base-10 ALLNet location ID */
|
|
placeId: string;
|
|
|
|
/** Keychip ID */
|
|
clientId: string;
|
|
|
|
/** ALLNet place name */
|
|
placeName: string;
|
|
|
|
/** ALLNet "region0" */
|
|
regionId: string;
|
|
|
|
/** ALLNet "region_name0" */
|
|
regionName: string;
|
|
|
|
/** ALLNet "allnet_id" string */
|
|
allNetId: string;
|
|
|
|
/** sic. AMEX DS EEPROM ID */
|
|
bordId: string;
|
|
|
|
/** Data version of the form "1.30.00" */
|
|
romVersion: string;
|
|
|
|
/** Data version of the form "1.30.00" */
|
|
dataVersion: string;
|
|
|
|
/** Integer */
|
|
dumpFileNum: string;
|
|
};
|
|
}
|