typedrequest/ts/typedrequest.classes.typedrequest.ts

27 lines
679 B
TypeScript
Raw Normal View History

2019-08-23 16:01:37 +00:00
import * as plugins from './typedrequest.plugins';
export class TypedRequest<T extends plugins.typedRequestInterfaces.ITypedRequest> {
public urlEndPoint: string;
public method: string;
// STATIC
constructor(urlEndPointArg: string, methodArg: T['method']) {
this.urlEndPoint = urlEndPointArg;
this.method = methodArg;
}
/**
* firest the request
*/
public async fire(fireArg: T['request']): Promise<T['response']> {
2019-09-01 11:17:21 +00:00
const response = await plugins.smartrequest.postJson(this.urlEndPoint, {
requestBody: {
2019-08-23 16:01:37 +00:00
method: this.method,
request: fireArg,
response: null
2019-09-01 11:17:21 +00:00
}
2019-08-23 16:01:37 +00:00
});
return response.body.response;
}
}