1#ifndef TENDUKE_EE_LICENSING_LICENSECHECKOUTRESPONSE_H
2#define TENDUKE_EE_LICENSING_LICENSECHECKOUTRESPONSE_H
4#include "../LicensingError.h"
5#include "../LicensingResponse.h"
11namespace tenduke {
namespace ee {
namespace licensing {
32 const std::map<std::string, tenduke::ee::licensing::Lease> &
leases,
33 const std::map<std::string, tenduke::ee::licensing::LicensingError> &
errors
48 const std::map<std::string, tenduke::ee::licensing::Lease>
leases;
Response from license checkout request.
Definition LicenseCheckoutResponse.h:24
const std::map< std::string, tenduke::ee::licensing::Lease > leases
Leases, that is, successfully checked out licenses.
Definition LicenseCheckoutResponse.h:48
LicenseCheckoutResponse(const std::map< std::string, tenduke::ee::licensing::Lease > &leases, const std::map< std::string, tenduke::ee::licensing::LicensingError > &errors)
Constructs new instance.
Definition LicenseCheckoutResponse.h:31
bool failed() override
Checks it the entire request failed, i.e.
Definition LicenseCheckoutResponse.h:41
Response from tenduke::ee::licensing::LicensingRequest.
Definition LicensingResponse.h:17
const std::map< std::string, tenduke::ee::licensing::LicensingError > errors
Errors of this response.
Definition LicensingResponse.h:50
bool hasErrors() const
Checks if there are any errors.
Definition LicensingResponse.h:42
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4