export declare type Method = 'UNKNOWN' | 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH'; export interface IServiceResponse { metadata?: any; report: Array; Error: number; Msg: string; Code: string; ID?: string; Version: string; Next?: boolean; Limit?: number; Offset?: number; } export declare const emptyServiceResponse: IServiceResponse; export interface IRdfServiceResponseError { method: Method; errorCode: number; rdfErrorCode: string; msg: string; rdfMsg: string; description: string; isHttpError: boolean; url: string; requestParams: object; requestBody: object; response?: object; } export declare const emptyRdfServiceResponseError: IRdfServiceResponseError; export interface IAdminApplicationsResponse extends IServiceResponse { report: Array<{ app_name: string; app_icon: string; host_url: string; app_url: string; profile: any; app_short_name: string; id_party_owner: number; app_id: number; app_description: string; app_code: string; app_platform_code: string; }>; } export interface IAdminResourcesResponse extends IServiceResponse { report: Array<{ app_id: number; resource_id: number; resource_code: string; resource_name: string; resource_description: string; resource_type: string; order_no: number; profile: any; }>; } export interface IPlatformPartyResponse extends IServiceResponse { report: Array<{ "ID": string; "Name": string; "TypeCode": string; "email": string; "TypeName": string; "StatusCode": string; "StatusName": string; "LegalID": string; "City": string; "Created Date": string; "Last Usage Date": string; "ParentRelationshipStatus": string; "ChildRelationshipStatus": string; "Applications Count": string; "profile": any; "Users count": string; "MainURL": string; "ProfileRlshp": any; "IdRlshp": null; "LegalAddress": string; "ProfileChldRlshp": string; "IdChldRlshp": string; "SentPrtyId": string; "SentLastRqSt": string; "SentRqCnt": string; "RcvdPrtyId": string; "RcvdLastRqSt": string; "RcvdRqCnt": string; "Kpp": string; "credit_limit": string; "min_value_order": string; "ParentRelationshipPartyId": string; "ChildRelationshipPartyId": string; }>; }