models/service-response.model.ts
Usage and service response.
Properties |
serviceResponse |
serviceResponse:
|
Type : S
|
Service call response |
usageResponse |
usageResponse:
|
Type : U
|
Usage response |
export interface ServiceResponse<U, S> {
/** Service call response */
serviceResponse: S;
/** Usage response */
usageResponse: U;
}