import { HttpMethod } from '../enums/http_methods';
import { PaginationModel } from './pagination_model';
import { RequestUploadFileModel } from './request_upload_file_model';
export interface RequestModel {
    apiUrl?: string | null;
    type?: string | null;
    httpMethod: HttpMethod;
    payload?: Record<string, any> | null;
    headers?: Record<string, any> | null;
    pagination?: PaginationModel | null;
    requestFiles?: RequestUploadFileModel[] | null;
}
