Interface BaseResponse

Base response interface for all operations

interface BaseResponse {
    requestId: string;
    success: boolean;
    timestamp: string;
}

Properties

requestId: string
success: boolean
timestamp: string