10Duke Enterprise C++ Client
Loading...
Searching...
No Matches
LicenseReleaseParameters.h
1#ifndef TENDUKE_EE_LICENSING_LICENSERELEASEPARAMETERS_H
2#define TENDUKE_EE_LICENSING_LICENSERELEASEPARAMETERS_H
3
4#include <string>
5#include <vector>
6
7namespace tenduke { namespace ee { namespace licensing {
8
13{
14public:
19 explicit LicenseReleaseParameters(const std::vector<std::string> &leaseIds)
21 {}
22
24 const std::vector<std::string> leaseIds;
25};
26
27}}}
28
29#endif //TENDUKE_EE_LICENSING_LICENSERELEASEPARAMETERS_H
Parameters for license-release request.
Definition LicenseReleaseParameters.h:13
const std::vector< std::string > leaseIds
IDs of leases to release.
Definition LicenseReleaseParameters.h:24
LicenseReleaseParameters(const std::vector< std::string > &leaseIds)
Constructs new instance.
Definition LicenseReleaseParameters.h:19
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4