trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
13 lines (12 loc) • 334 B
TypeScript
import { BaseEntity } from '../../../entities/core-entities/index.js';
/**
* HTTP request DTO. basic structure for sending
* requests to the API.
*/
export declare class HttpRequestDto implements BaseEntity {
[key: string]: unknown;
packageId: number;
username: string;
password: string;
languageId?: number;
}