ntk-cms-api
Version:
Ntk Cms Api And Model For Typscript
19 lines (18 loc) • 591 B
TypeScript
import { DeviceTypeEnum } from '../../enums/base/deviceTypeEnum';
import { OperatingSystemTypeEnum } from '../../enums/base/operatingSystemTypeEnum';
export declare class TokenDeviceClientInfoDtoModel {
securityKey: string;
clientMACAddress: string;
notificationId: string;
osType: OperatingSystemTypeEnum;
deviceType: DeviceTypeEnum;
packageName: string;
appBuildVer: number;
appSourceVer: string;
country: string;
locationLat: string;
locationLong: string;
simCard: string;
language: string;
deviceBrand: string;
}