/*
This file is part of TALER
Copyright (C) 2022 Taler Systems SA
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
TALER; see the file COPYING. If not, see
*/
/**
* @file backenddb/pg_lookup_contract_terms3.h
* @brief implementation of the lookup_contract_terms3 function for Postgres
* @author Iván Ávalos
*/
#ifndef PG_LOOKUP_CONTRACT_TERMS3_H
#define PG_LOOKUP_CONTRACT_TERMS3_H
#include
#include
#include "taler_merchantdb_plugin.h"
/**
* Retrieve contract terms given its @a order_id
*
* @param cls closure
* @param instance_id instance's identifier
* @param order_id order_id used to lookup.
* @param session_id session_id to compare, can be NULL
* @param[out] contract_terms where to store the result, NULL to only check for existence
* @param[out] order_serial set to the order's serial number
* @param[out] paid set to true if the order is fully paid
* @param[out] wired set to true if the exchange wired the funds
* @param[out] session_matches set to true if @a session_id matches session stored for this contract
* @param[out] claim_token set to token to use for access control
* @param[out] choice_index set to the choice index, -1 if not set
* @return transaction status
*/
enum GNUNET_DB_QueryStatus
TMH_PG_lookup_contract_terms3 (
void *cls,
const char *instance_id,
const char *order_id,
const char *session_id,
json_t **contract_terms,
uint64_t *order_serial,
bool *paid,
bool *wired,
bool *session_matches,
struct TALER_ClaimTokenP *claim_token,
int16_t *choice_index);
#endif