jspurefix
Version:
pure node js fix engine
11 lines (10 loc) • 353 B
TypeScript
import { IStandardHeader } from './set/standard_header';
import { IThrottleParamsGrp } from './set/throttle_params_grp';
export interface IUserResponse {
UserRequestID: string;
Username: string;
UserStatus?: number;
UserStatusText?: string;
StandardHeader?: IStandardHeader;
ThrottleParamsGrp?: IThrottleParamsGrp[];
}