jspurefix
Version:
pure node js fix engine
13 lines (12 loc) • 438 B
TypeScript
import { IStandardHeader } from './set/standard_header';
import { IThrottleParamsGrp } from './set/throttle_params_grp';
import { IStandardTrailer } from './set/standard_trailer';
export interface IUserResponse {
StandardHeader: IStandardHeader;
UserRequestID: string;
Username: string;
UserStatus?: number;
ThrottleParamsGrp?: IThrottleParamsGrp;
UserStatusText?: string;
StandardTrailer: IStandardTrailer;
}