minime/src/chunithm/request/upsertClientSetting.ts
Tau d1d63e1ef9 chunithm: Initial implementation code drop
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.
2019-11-06 17:29:07 -05:00

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;
};
}