interface NvmAPIResult {
    data?: APIOutputData;
    httpStatus?: number;
    message?: string;
    success: boolean;
    txHash?: string;
    when?: Date;
}

Properties

httpStatus?: number
message?: string
success: boolean
txHash?: string
when?: Date